blob: 1e8511174fb9dfda9ee62e358836498974216856 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
(define-module (gn packages python-xyz)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix build-system python)
#:use-module (guix build-system pyproject)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages check)
#:use-module (gnu packages sphinx)
#:use-module (gnu packages python-web)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages python-check)
#:use-module (gnu packages python-build))
(define-public python-mslex
(package
(name "python-mslex")
(version "1.3.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/smoofra/mslex")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1k7p2yzsiga39kmcp440mgxlgsahg01il7jrbr8mc94k60wzmgdy"))))
(build-system pyproject-build-system)
(native-inputs (list python-setuptools python-wheel))
(inputs (list python-tox
python-trio
python-tqdm
python-twine
python-black
python-flake8
python-sphinx
python-pytest
python-watchdog
python-coverage
python-bump2version
python-types-setuptools))
(home-page "https://github.com/smoofra/mslex")
(synopsis "shlex for windows")
(description "shlex for windows.")
(license license:asl2.0)))
(define-public python-oslex
(package
(name "python-oslex")
(version "0.1.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "oslex" version))
(sha256
(base32 "0bazd0vk2lzsk7cwgl2m669m6dqqhh4l0d6sn2yaiwjxqy1cvm0y"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-mslex))
(native-inputs (list python-hatchling))
(home-page "https://github.com/petamas/oslex")
(synopsis "OS-independent wrapper for shlex and mslex")
(description "OS-independent wrapper for shlex and mslex.")
(license license:expat)))
(define-public python-annotated-doc
(package
(name "python-annotated-doc")
(version "0.0.4")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/fastapi/annotated-doc")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "13fh58q1a8kvrx1kjgr6qmd09jhikxc7wlyccajpfz657ipjif9v"))))
(build-system pyproject-build-system)
(native-inputs (list python-pdm-backend))
(home-page "https://github.com/fastapi/annotated-doc")
(synopsis
"Document parameters, class attributes, return types, and variables inline, with Annotated.")
(description
"Document parameters, class attributes, return types, and variables inline, with
Annotated.")
(license license:expat)))
(define-public python-backoff
(package
(name "python-backoff")
(version "2.2.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/litl/backoff")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0cpfd8fdznwlxrjpwy10pl4bj9q393ys1vj90nvsrhwakqcdiil3"))))
(build-system pyproject-build-system)
(native-inputs (list python-pytest
python-requests
python-responses
python-poetry-core
python-pytest-asyncio-0.21))
(home-page "https://github.com/litl/backoff")
(synopsis "Function decoration for backoff and retry")
(description "Function decoration for backoff and retry.")
(license license:expat)))
(define-public python-typing-inspection
(package
(name "python-typing-inspection")
(version "0.4.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/pydantic/typing-inspection")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1dqib4arxxaxwyapw6y4pcvm38l8djkhd8cfr149w42bw4xrqr38"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-typing-extensions))
(native-inputs (list python-hatchling))
(home-page "https://github.com/pydantic/typing-inspection")
(synopsis "Runtime typing introspection tools")
(description "Runtime typing introspection tools.")
(license license:expat)))
|