summaryrefslogtreecommitdiff
path: root/guix/.guix-packages/python.scm
blob: 1db1a8d62574f0bc640401c74e87dad67c27187b (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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
(define-module (python)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (gnu packages)
  #:use-module (gnu packages base)
  #:use-module (gnu packages bash)
  #:use-module (gnu packages certs)
  #:use-module (gnu packages check)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages dbm)
  #:use-module (gnu packages time)
  #:use-module (gnu packages databases)
  #:use-module (gnu packages hurd)
  #:use-module (gnu packages libffi)
  #:use-module (gnu packages ncurses)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages python-xyz)
  #:use-module (gnu packages python-web)
  #:use-module (gnu packages readline)
  #:use-module (gnu packages shells)
  #:use-module (gnu packages sqlite)
  #:use-module (gnu packages tcl)
  #:use-module (gnu packages tls)
  #:use-module (gnu packages xml)
  #:use-module (guix gexp)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix utils)
  #:use-module (guix build-system gnu)
  #:use-module (guix build-system python)
  #:use-module (guix build-system trivial)
  #:use-module (srfi srfi-1)
  #:use-module (srfi srfi-26)

  #:export (customize-site
            guix-pythonpath-search-path))

(define-public python-types-urllib3
  (package
    (name "python-types-urllib3")
    (version "1.26.11")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "types-urllib3" version))
        (sha256
          (base32 "0nri65gfihl4wcbi33wwcksmh5g3ibhjs0hxbyq1x1b82524xmi4"))))
    (build-system python-build-system)
    (home-page "https://github.com/python/typeshed")
    (synopsis "Typing stubs for urllib3")
    (description "Typing stubs for urllib3")
    (license #f)))

(define-public python-types-requests
  (package
    (name "python-types-requests")
    (version "2.27.16")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "types-requests" version))
        (sha256
          (base32 "16zypz2csgw0c86ffmyn7mljbg1h4phxnlhl1fvfz9win8c0q0f8"))))
    (build-system python-build-system)
    (propagated-inputs (list python-types-urllib3))
    (home-page "https://github.com/python/typeshed")
    (synopsis "Typing stubs for requests")
    (description "Typing stubs for requests")
    (license #f)))

(define-public python-types-pyyaml
  (package
    (name "python-types-pyyaml")
    (version "6.0.5")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "types-PyYAML" version))
        (sha256
          (base32 "0blavmg6f0xapjba1sh2rnvrdjx5dps1r3h3ihxdilgk2h4hakj6"))))
    (build-system python-build-system)
    (home-page "https://github.com/python/typeshed")
    (synopsis "Typing stubs for PyYAML")
    (description "Typing stubs for PyYAML")
    (license #f)))

(define-public python-types-pytz
  (package
    (name "python-types-pytz")
    (version "2021.3.6")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "types-pytz" version))
        (sha256
          (base32 "14yr5hg2ww8s4a0mz2bkd549fv8qgm538fnzxvqv92ld1pcpym3l"))))
    (build-system python-build-system)
    (home-page "https://github.com/python/typeshed")
    (synopsis "Typing stubs for pytz")
    (description "Typing stubs for pytz")
    (license #f)))

(define-public python-types-psycopg2
  (package
    (name "python-types-psycopg2")
    (version "2.9.9")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "types-psycopg2" version))
        (sha256
          (base32 "0bhaybs5rl864yw2w1qapbpihp4a798z3m2yzl0dqhxkxr94v7ag"))))
    (build-system python-build-system)
    (home-page "https://github.com/python/typeshed")
    (synopsis "Typing stubs for psycopg2")
    (description "Typing stubs for psycopg2")
    (license #f)))

(define-public python-types-werkzeug
  (package
    (name "python-types-werkzeug")
    (version "1.0.9")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "types-Werkzeug" version))
        (sha256
          (base32 "132im9g3m7hv57g3zq30qj7qfpv5jxiyw354aba360a09ih6khjw"))))
    (build-system python-build-system)
    (home-page "https://github.com/python/typeshed")
    (synopsis "Typing stubs for Werkzeug")
    (description "Typing stubs for Werkzeug")
    (license #f)))

(define-public python-types-markupsafe
  (package
    (name "python-types-markupsafe")
    (version "1.1.10")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "types-MarkupSafe" version))
        (sha256
          (base32 "1c8iczhgiyw7f92mhbq3j9038g0rj3sqwamclnisw0ixd1raicw5"))))
    (build-system python-build-system)
    (home-page "https://github.com/python/typeshed")
    (synopsis "Typing stubs for MarkupSafe")
    (description "Typing stubs for MarkupSafe")
    (license #f)))

(define-public python-types-jinja2
  (package
    (name "python-types-jinja2")
    (version "2.11.9")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "types-Jinja2" version))
        (sha256
          (base32 "10cc9d6hikrv28sqn84lhi8qchpyy3l8jkby1d9fsyms1aj79p6v"))))
    (build-system python-build-system)
    (propagated-inputs (list python-types-markupsafe))
    (home-page "https://github.com/python/typeshed")
    (synopsis "Typing stubs for Jinja2")
    (description "Typing stubs for Jinja2")
    (license #f)))

(define-public python-types-flask
  (package
    (name "python-types-flask")
    (version "1.1.6")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "types-Flask" version))
        (sha256
          (base32 "1kz9cdbirfxa79vvy777bdpfl8ygf60x1xh1ddp47ygzmfrpgixa"))))
    (build-system python-build-system)
    (propagated-inputs
      (list python-types-click python-types-jinja2 python-types-werkzeug))
    (home-page "https://github.com/python/typeshed")
    (synopsis "Typing stubs for Flask")
    (description "Typing stubs for Flask")
    (license #f)))

(define-public python-types-click
  (package
    (name "python-types-click")
    (version "7.1.8")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "types-click" version))
        (sha256
          (base32 "14p0yjzxpw0jfkyhx16bl2kvla0ai9q51jhicd8xq0b4prl4jq5n"))))
    (build-system python-build-system)
    (home-page "https://github.com/python/typeshed")
    (synopsis "Typing stubs for click")
    (description "Typing stubs for click")
    (license #f)))

(define-public python-systemd-python
  (package
    (name "python-systemd-python")
    (version "234")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "systemd-python" version))
        (sha256
          (base32 "1rw3vfakils7h0i93cyi5hvvdc5mgq5cp4n2mmdf9npaf2zl83px"))))
    (build-system python-build-system)
    (home-page "https://github.com/systemd/python-systemd")
    (synopsis "Python interface for libsystemd")
    (description "Python interface for libsystemd")
    (license #f)))

(define-public python-gunicorn
  (package
    (name "python-gunicorn")
    (version "20.1.0")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "gunicorn" version))
        (sha256
          (base32 "1s7670qw36x90bgmazmgib170i5gnpyb2ypxzlla7y0mpasniag0"))))
    (build-system python-build-system)
    (arguments
     `(#:tests? #f))
    (propagated-inputs (list python-setuptools))
    (home-page "https://gunicorn.org")
    (synopsis "WSGI HTTP Server for UNIX")
    (description "WSGI HTTP Server for UNIX")
    (license license:expat)))

(define-public python-aiohttp-utils
  (package
    (name "python-aiohttp-utils")
    (version "3.1.1")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "aiohttp_utils" version))
        (sha256
          (base32 "056w0aw3nnnhwzrn8rrsn7hbmxb5yd7iz8h4m4x1kzd32pfc9wh8"))))
    (build-system python-build-system)
    (arguments
     `(#:tests? #f))
    (propagated-inputs (list python-aiohttp python-gunicorn python-mimeparse))
    (home-page "https://github.com/sloria/aiohttp_utils")
    (synopsis "Handy utilities for aiohttp.web applications.")
    (description "Handy utilities for aiohttp.web applications.")
    (license license:expat)))

(define-public python-mirakuru
  (package
    (name "python-mirakuru")
    (version "2.4.2")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "mirakuru" version))
        (sha256
          (base32 "09l2a2c2mh422j43q8n1l0vg14la34ynp32r1v5rdjjb3gcd917c"))))
    (build-system python-build-system)
    (propagated-inputs (list python-psutil))
    (native-inputs (list python-daemon python-pytest python-pytest-cov))
    (home-page "https://github.com/ClearcodeHQ/mirakuru")
    (synopsis "Process executor (not only) for tests.")
    (description "Process executor (not only) for tests.")
    (license #f)))

(define-public python-pytest-postgresql
  (package
    (name "python-pytest-postgresql")
    (version "4.1.1")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "pytest-postgresql" version))
        (sha256
          (base32 "0p99j6wm36s0xz3zxi8qyir0ajnxpzcjb00f3z5xwh8603s6lk8l"))))
    (build-system python-build-system)
    (propagated-inputs
      (list python-mirakuru python-port-for python-pytest python-setuptools))
    (native-inputs (list python-pytest-cov python-pytest-xdist))
    (home-page "https://github.com/ClearcodeHQ/pytest-postgresql")
    (synopsis "Postgresql fixtures and fixture factories for Pytest.")
    (description "Postgresql fixtures and fixture factories for Pytest.")
    (license #f)))

(define-public python-swh.core
  (package
    (name "python-swh.core")
    (version "2.4.0")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "swh.core" version))
        (sha256
          (base32 "17dyqq1z774xnbjak4ncdrbp6acnbrmks0636fw1rmqq728rzz68"))))
    (build-system python-build-system)
    (propagated-inputs
      (list python-click
            python-deprecated
            python-magic
            python-pyyaml
            python-sentry-sdk))
    (native-inputs
      (list python-aiohttp
            python-aiohttp-utils
            python-blinker
            python-flask
            python-hypothesis
            python-iso8601
            python-msgpack
            python-psycopg2
            python-pytest
            python-pytest-mock
            python-pytest-postgresql
            python-pytz
            python-requests
            python-requests-mock
            ;;python-systemd-python
            python-types-click
            python-types-flask
            python-types-psycopg2
            python-types-pytz
            python-types-pyyaml
            python-types-requests
            python-typing-extensions))
    (home-page "https://forge.softwareheritage.org/diffusion/DCORE/")
    (synopsis "Software Heritage core utilities")
    (description "Software Heritage core utilities")
    (license #f)))