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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
|
(define-module (battering packages python-xyz)
#:use-module (guix build-system pyproject)
#:use-module (guix build-system python)
#:use-module (guix build-system cargo)
#:use-module (guix download)
#:use-module (guix gexp)
#:use-module (guix git-download)
#:use-module (guix utils)
#:use-module (guix packages)
#:use-module ((guix licenses)
#:prefix license:)
#:use-module (gnu packages certs)
#:use-module (gnu packages check)
#:use-module (gnu packages pdf)
#:use-module (gnu packages python)
#:use-module (gnu packages python-build)
#:use-module (gnu packages python-check)
#:use-module (gnu packages python-crypto)
#:use-module (gnu packages python-science)
#:use-module (gnu packages python-web)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages rust-apps)
#:use-module (gnu packages crates-io)
#:use-module (gnu packages time)
#:use-module (gnu packages tls)
#:use-module (gnu packages tmux)
#:use-module (gnu packages xdisorg)
#:use-module (gnu packages xml))
(define-public python-pyfzf
(package
(name "python-pyfzf")
(version "0.3.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pyfzf" version))
(sha256
(base32 "1lkbnhjf92063gg9snxskcx4n2yj7mck2qgrh8q9rjpyrws2x46x"))))
(build-system pyproject-build-system)
(native-inputs (list python-setuptools python-wheel))
(home-page "https://github.com/nk412/pyfzf")
(synopsis "Python wrapper for junegunn's fuzzyfinder (fzf)")
(description "Python wrapper for junegunn's fuzzyfinder (fzf).")
(license license:expat)))
(define-public python-arsenal
(package
(name "python-arsenal")
(version "1.2.7")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Orange-Cyberdefense/arsenal.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "19s36gkfflll7sxhd0w9qrc8lgh4ixgh97pr3bplx3b8zh3w9h0b"))))
(build-system pyproject-build-system)
(native-inputs (list python-hatchling
python-setuptools
python-wheel
python-docutils))
(propagated-inputs (list python-libtmux
python-pyperclip
python-pyyaml
python-pyfzf))
(home-page "https://github.com/Orange-Cyberdefense/arsenal")
(synopsis "Arsenal of python utilities.")
(description "Arsenal is just a quick inventory and launcher for hacking programs.")
(license license:gpl3)))
(define-public python-qt-material
(package
(name "python-qt-material")
(version "2.14")
(source
(origin
(method url-fetch)
(uri (pypi-uri "qt-material" version))
(sha256
(base32 "08xfyzrdasliii4ql17jqyfv7glhgh27rfrnwdxcy5vjx6nvbnxm"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-jinja2))
(native-inputs (list python-setuptools python-wheel))
(home-page "https://pypi.org/project/qt-material/")
(synopsis
"Material inspired stylesheet for PySide2, PySide6, PyQt5 and PyQt6.")
(description
"This is another stylesheet for PySide6, PySide2, PyQt5 and PyQt6, which
looks like Material Design (close enough).")
(license license:bsd-2)))
(define-public python-pyvis
(package
(name "python-pyvis")
(version "0.3.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/WestHealth/pyvis")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "18gp652i4z8r5rxs9mk5h2vx1bc52xlw5wramidb11ilcy9lr3vs"))))
(build-system pyproject-build-system)
(propagated-inputs
(list
python-jinja2
python-networkx
python-ipython
python-pandas
python-jsonpickle))
(native-inputs (list python-setuptools python-wheel python-pip
python-selenium python-numpy))
(arguments (list #:tests? #f))
(home-page "https://pypi.org/project/qt-material/")
(synopsis
"Python library for visualizing networks")
(description
"Python package for creating and visualizing interactive network graphs.")
(license license:bsd-3)))
(define-public python-xmind
(package
(name "python-xmind")
(version "1.2.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "XMind" version))
(sha256
(base32 "0vlpz87m5xnmnbzjrzzspjrz73m2xdnxh5gmsph3z8y0y6ns8hbn"))))
(build-system pyproject-build-system)
(native-inputs (list python-setuptools python-wheel))
(home-page "https://github.com/zhuifengshen/xmind")
(synopsis
"XMind Python")
(description
"XMind Python")
(license license:expat)))
(define-public python-svglib
(package
(name "python-svglib")
(version "1.5.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "svglib" version))
(sha256
(base32 "11z5jl38zjbzrmdly197m5x6303axcnlrlml1w6fd7j0m79nbrrs"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-cssselect2 python-lxml python-reportlab
python-tinycss2))
(native-inputs (list python-setuptools python-wheel
python-pytest python-pytest-runner))
(arguments
`(#:test-flags '("-k" "not Wikipedia and not W3CSVG")
#:phases
(modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? test-flags #:allow-other-keys)
(when tests?
(apply invoke "python" "-m" "pytest" "-v" test-flags)))))))
(home-page "https://github.com/deeplook/svglib")
(synopsis "A pure-Python library for reading and converting SVG")
(description
"Svglib is a pure-Python library for reading SVG files and converting
them (to a reasonable degree) to other formats using the ReportLab Open Source
toolkit.")
(license license:lgpl3+)))
(define-public python-pae
(package
(name "python-pae")
(version "0.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/MatthiasValvekens/python-pae")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0wdgi99wxnyjabbzhqxs8abfzx83m52y3s39x28x5vyy9i7zci8g"))))
(build-system pyproject-build-system)
(native-inputs (list python-poetry-core
python-pytest))
(home-page "https://github.com/MatthiasValvekens/python-pae")
(synopsis "Pre-authentication encoding (PAE) implementation in Python")
(description "Pre-authentication encoding (PAE) implementation in Python.")
(license license:expat)))
(define-public python-oscrypto
(package
(name "python-oscrypto")
(version "1.3.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/wbond/oscrypto")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "1v5wkmzcyiqy39db8j2dvkdrv2nlsc48556h73x4dzjwd6kg4q0a"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-asn1crypto openssl))
(native-inputs (list python-setuptools python-wheel python-pip nss-certs-for-test))
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(add-before 'check 'skip-internet-tests
(lambda _
(setenv "OSCRYPTO_SKIP_INTERNET_TESTS" "1"))))))
(home-page "https://github.com/wbond/oscrypto")
(synopsis
"Compiler-free Python crypto library backed by the OS, supporting CPython
and PyPy")
(description
"TLS (SSL) sockets, key generation, encryption, decryption, signing,
verification and KDFs using the OS crypto libraries. Does not require a
compiler, and relies on the OS for patching. Works on Windows, OS X and
Linux/BSD.")
(license license:expat)))
(define-public python-uritools
(package
(name "python-uritools")
(version "4.0.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "uritools" version))
(sha256
(base32 "1hivmsycmvmymavx29295bfqxk5a75sr3ynmx564cjf8m61a21pf"))))
(build-system pyproject-build-system)
(native-inputs (list python-setuptools python-wheel))
(home-page "https://github.com/tkem/uritools/")
(synopsis "URI parsing, classification and composition")
(description "This module provides RFC 3986 compliant functions for
parsing, classifying and composing URIs and URI references, largely replacing
the Python Standard Library’s @code{urllib.parse} module.")
(license license:expat)))
(define-public python-pyhanko-certvalidator
(package
(name "python-pyhanko-certvalidator")
(version "0.26.5")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/MatthiasValvekens/certvalidator")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1c50bsibr4izvbg2wsx8k3l0vkjbp0caq3jaxnnrlkpwzzxfgzgv"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-asn1crypto
python-oscrypto
python-cryptography
python-uritools
python-requests
python-aiohttp))
(native-inputs (list python-pytest
python-pytest-cov
python-freezegun
python-pytest-aiohttp
python-types-requests
python-setuptools
python-wheel
nss-certs-for-test))
(home-page "https://github.com/MatthiasValvekens/certvalidator")
(synopsis
"Python library for validating X.509 certificates and paths")
(description
"@code{pyhanko-certvalidator} is a Python library for validating X.509
certificates paths. It supports various options, including: validation at a
specific moment in time, whitelisting and revocation checks.")
(license license:expat)))
(define-public python-certomancer
(package
(name "python-certomancer")
(version "0.12.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/MatthiasValvekens/certomancer")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1mj0km2qwxphz5kwigv6bdlzjxzwxh6j8gajb5d48lqncnhcn66q"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-asn1crypto
python-click
python-pyyaml
python-dateutil
python-tzlocal
python-cryptography
python-requests-mock
python-werkzeug
python-jinja2))
(native-inputs (list python-pytest
python-pytz
python-freezegun
python-requests
python-pytest-cov
python-pytest-asyncio
python-pyhanko-certvalidator
python-setuptools
python-wheel))
(home-page "https://github.com/MatthiasValvekens/certomancer")
(synopsis "PKI testing tool")
(description "Construct, mock & deploy PKI test configurations using
declarative configuration.")
(license license:expat)))
(define-public python-certomancer-csc-dummy
(package
(name "python-certomancer-csc-dummy")
(version "0.3.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/MatthiasValvekens/certomancer-csc-dummy")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "01kldbg9vrbq9scqd1r0x66c0dg7pzgyllkmnbv3w1103h11ib4s"))
(modules '((guix build utils)))
(snippet
'(substitute* "setup.py"
(("aiohttp~=")
"aiohttp>=")))))
(build-system pyproject-build-system)
(propagated-inputs (list python-aiohttp python-asn1crypto
python-certomancer python-cryptography python-pae))
(native-inputs (list python-setuptools python-wheel))
(home-page "https://github.com/MatthiasValvekens/certomancer-csc-dummy")
(synopsis "A Certomancer-based demo CSC server for integration tests")
(description
"This package provides a Certomancer-based demo CSC server for integration tests.")
(license license:expat)))
(define-public python-barcode
(package
(name "python-barcode")
(version "0.15.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "python-barcode" version))
(sha256
(base32 "1pjlr1pp4yg679b9xd8pfyjqc7lvxas8chpzdm39gr8ivgxja61v"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-pillow))
(native-inputs (list python-pytest
python-pytest-cov
python-setuptools
python-setuptools-scm
python-wheel))
(home-page "https://github.com/WhyNotHugo/python-barcode")
(synopsis "Create standard barcodes with Python.")
(description "This package provides a simple way to create barcodes in Python.")
(license license:expat)))
(define-public python-uharfbuzz
(package
(name "python-uharfbuzz")
(version "0.45.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "uharfbuzz" version))
(sha256
(base32 "19il53ghx6bp5nwbznvim4km9pm8dc7viq3iskx0iyc26shakhis"))))
;; TODO: use system harfbuzz instead of the bundled one
(build-system pyproject-build-system)
(native-inputs (list python-cython
python-pkgconfig
python-setuptools
python-setuptools-scm
python-wheel))
(home-page "https://github.com/trufont/uharfbuzz")
(synopsis "Harfbuzz Python bindings")
(description
"Streamlined Cython bindings for the harfbuzz shaping engine.")
(license license:asl2.0)))
(define-public python-untokenize
(package
(name "python-untokenize")
(version "0.1.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/myint/untokenize")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "10rklx9ly1zmnlh29i1jps62dd05dd05cnv7sa3lqaqy8h13idc8"))))
(build-system pyproject-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda _
(invoke "python" "./test_untokenize.py")
(invoke "python" "./test_acid.py"))))))
(native-inputs (list python-setuptools python-wheel))
(home-page "https://github.com/myint/untokenize")
(synopsis
"Transforms tokens into original source code (while preserving whitespace).")
(description
"This package transforms tokens into source code. Unlike the standard
library's @code{tokenize.untokenize()}, it preserves the original whitespace
between tokens.")
(license license:expat)))
(define-public python-docformatter
(package
(name "python-docformatter")
(version "1.7.5")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/PyCQA/docformatter")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0szcazklngvn8yi2pl09s7dd858wlfww4df5vic8xh0arqdxwj21"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-charset-normalizer
python-tomli
python-untokenize))
(native-inputs (list python-poetry-core
python-pytest
python-mock))
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(add-before 'check 'set-virtual-env
(lambda _
(setenv "VIRTUAL_ENV" #$output))))))
(home-page "https://github.com/PyCQA/docformatter")
(synopsis "Formats docstrings to follow PEP 257")
(description "This package automatically formats docstrings to follow a
subset of the PEP 257 conventions")
(license license:expat)))
(define-public python-xsdata
(package
(name "python-xsdata")
(version "24.12")
(source
(origin
(method url-fetch)
(uri (pypi-uri "xsdata" version))
(sha256
(base32 "1d00laim53pz8sinh9lf978cpbgqnkvcsa3c9w32rs5x5c1nrhb7"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-typing-extensions
python-click
python-click-default-group
python-docformatter
python-jinja2
python-toposort
python-lxml
python-requests))
(native-inputs (list python-pytest
python-pytest-benchmark
python-pytest-cov
python-setuptools
python-wheel))
;; TODO: enable these tests when ruff is packaged in Guix
(arguments
`(#:test-flags
(list "-k" (string-append
"not " (string-join
'("test_ruff_code_with_invalid_code"
"test_annotations"
"test_xml_documents"
"test_books_schema"
"test_wsdl_codegen"
"test_generate_restructured_docstrings"
"test_generate_numpy_docstrings"
"test_generate_google_docstrings"
"test_generate_accessible_docstrings"
"test_generate_blank_docstrings"
"test_dtd_documents"
"test_primer_schema"
"test_json_documents")
" and not ")))))
(home-page "https://xsdata.readthedocs.io/")
(synopsis "Naive XML Bindings for python")
(description "This is a data binding library for Python allowing
developers to access and use XML and JSON documents as simple objects rather
than using DOM.")
(license license:expat)))
(define-public python-pyhanko
(package
(name "python-pyhanko")
(version "0.25.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/MatthiasValvekens/pyHanko")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "02pryyw9n2hip3mmznsgaz0cd7ks7mpksf6nh9xvsmh3jr1h568w"))
(modules '((guix build utils)))
;; TODO: enable these tests when python-pcks11
(snippet
'(with-directory-excursion "pyhanko_tests"
(delete-file "test_pkcs11.py")))))
(build-system pyproject-build-system)
(propagated-inputs (list python-asn1crypto
python-qrcode
python-tzlocal
python-pyhanko-certvalidator
python-click
python-requests
python-pyyaml
python-cryptography
python-defusedxml
python-fonttools
python-uharfbuzz
python-pillow
python-barcode
python-aiohttp
python-xsdata))
(native-inputs (list python-pytest
python-requests-mock
python-freezegun
python-certomancer
python-certomancer-csc-dummy
python-pytest-cov
python-pytest-asyncio
python-pytest-aiohttp
poppler-qt6 ;; pdftoppm
python-setuptools
python-wheel
nss-certs-for-test))
(arguments
(list
;; These tests respectively require internet and fail because of a RuntimeError.
#:test-flags ''("-k" "not test_ts_fetch and not [pyloop] and not [pyloop-response_obj")
#:phases
#~(modify-phases %standard-phases
(add-before 'check 'set-pdftoppm-path
(lambda _
(setenv "PDFTOPPM_PATH" (string-append #$poppler-qt6 "/bin/pdftoppm")))))))
(home-page "https://github.com/MatthiasValvekens/pyHanko")
(synopsis "Sign and stamp PDF files.")
(description
"PyHanko is a tool for signing and stamping PDF files.")
(license license:expat)))
(define-public python-bidi
(package
(name "python-bidi")
(version "0.6.6")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/MeirKriheli/python-bidi/")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0k4g3djmj7z7hfqyx15z5mzraq0zwgmp1fpph1pgv9y0p1rfkspi"))))
(build-system cargo-build-system)
(arguments
(list
#:imported-modules `(,@%cargo-build-system-modules
,@%pyproject-build-system-modules)
#:modules '((guix build cargo-build-system)
((guix build pyproject-build-system) #:prefix py:)
(guix build utils))
#:phases
#~(modify-phases %standard-phases
(replace 'build
(assoc-ref py:%standard-phases 'build))
(add-after 'build 'install-python-module
(assoc-ref py:%standard-phases 'install)))
#:cargo-inputs
`(("rust-pyo3" ,rust-pyo3-0.23)
("rust-unicode-bidi" ,rust-unicode-bidi-0.3))
#:install-source? #false))
(native-inputs (list python-wrapper maturin python-pytest))
(home-page "https://github.com/MeirKriheli/python-bidi")
(synopsis "Python Bidi layout wrapping the Rust crate unicode-bidi")
(description "Bi-directional (BiDi) layout for Python providing a Rust and
Python implementation.")
(license license:lgpl3)))
(define-public python-arabic-reshaper
(package
(name "python-arabic-reshaper")
(version "3.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/mpcabd/python-arabic-reshaper/")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "00wd6h4fj40ia9rsnr28g0vyijbrsnkx24q7am07k9pglkjq5i5r"))))
(build-system pyproject-build-system)
(native-inputs (list python-setuptools python-wheel))
(home-page "https://github.com/mpcabd/python-arabic-reshaper/")
(synopsis
"Reconstruct Arabic sentences to be used in applications that don't
support Arabic.")
(description
"This library reconstructs Arabic sentences to be used in applications
that do not support Arabic text.")
(license license:expat)))
(define-public python-xhtml2pdf
(package
(name "python-xhtml2pdf")
(version "0.2.16")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/xhtml2pdf/xhtml2pdf")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1hgn9wjasgs28dhmxr3i907pg2f6sn1z0c0czzrw45pqmhxbbxmj"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-arabic-reshaper
python-html5lib
python-pillow
python-pyhanko
python-pyhanko-certvalidator
python-pypdf
python-bidi
python-reportlab
python-svglib))
(native-inputs (list python-coverage python-setuptools python-tomli
python-tox python-wheel))
;; Tests require an internet connection.
(arguments `(#:tests? #f))
(home-page "https://github.com/xhtml2pdf/xhtml2pdf")
(synopsis "PDF generator using HTML and CSS")
(description "A library for converting HTML into PDFs using ReportLab.")
(license license:asl2.0)))
(define-public python-torrequest
(package
(name "python-torrequest")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "torrequest" version))
(sha256
(base32 "10mf9p6r4wwk9m50jh5bpmvsnymkmn3wfqs30dx8vagx7zmd8i9p"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-pysocks python-requests python-stem))
(native-inputs (list python-setuptools python-wheel))
(home-page "http://github.com/erdiaker/torrequest")
(synopsis "A simple interface for HTTP(s) requests over Tor")
(description
"This package provides a simple interface for HTTP(s) requests over Tor.")
(license license:expat)))
(define-public python-socid-extractor
(package
(name "python-socid-extractor")
(version "0.0.27")
(source
(origin
(method url-fetch)
(uri (pypi-uri "socid_extractor" version))
(sha256
(base32 "1jzk7r5nj5gkcc7kzzk8kvgn4wk6f0zbpzxjbqq2yb797942w0yj"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-beautifulsoup4 python-dateutil
python-requests))
(native-inputs (list python-setuptools python-wheel))
;; Tests require internet, obviously.
(arguments (list #:tests? #f))
(home-page "https://github.com/soxoj/socid-extractor")
(synopsis
"Extract accounts' identifiers from personal pages on various platforms")
(description
"Extract information about a user from profile webpages / API responses
and save it in machine-readable format.")
(license license:gpl3)))
(define-public python-greenlet-2
(package/inherit python-greenlet
(name "python-greenlet")
(version "2.0.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "greenlet" version))
(sha256
(base32 "1h1l1mll5s4y1b09asf2jps0m7wyshnis1aassz9gc3xmw9xrj77"))))))
|