Archived
1
0
Fork 0

gnu: python-trustme: Update to 0.9.0.

* gnu/packages/python-crypto.scm (python-trustme): Update to 0.9.0.
[build-system]: Use pyproject-build-system.
[arguments]: Delete field.
[propagated-inputs]: Add python-idna and python-ipaddress.
This commit is contained in:
Maxim Cournoyer 2023-03-29 10:07:57 -04:00
parent a1d4e562f1
commit a1b826b338
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -1503,21 +1503,14 @@ items and collections, editing items, locking and unlocking collections
(define-public python-trustme (define-public python-trustme
(package (package
(name "python-trustme") (name "python-trustme")
(version "0.6.0") (version "0.9.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "trustme" version)) (uri (pypi-uri "trustme" version))
(sha256 (sha256
(base32 "0v3vr5z6apnfmklf07m45kv5kaqvm6hxrkaqywch57bjd2siiywx")))) (base32 "0v2qzszmyazfgc1snicdr4b4qdajpjd4pbinpgrn9vfff0yv41sy"))))
(build-system python-build-system) (build-system pyproject-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda* (#:key inputs outputs #:allow-other-keys)
(add-installed-pythonpath inputs outputs)
(invoke "pytest" "-vv"))))))
(native-inputs (native-inputs
(list python-more-itertools (list python-more-itertools
python-pyopenssl python-pyopenssl
@ -1526,7 +1519,9 @@ items and collections, editing items, locking and unlocking collections
python-service-identity python-service-identity
python-zipp)) python-zipp))
(propagated-inputs (propagated-inputs
(list python-cryptography)) (list python-cryptography
python-idna
python-ipaddress))
(home-page "https://github.com/python-trio/trustme") (home-page "https://github.com/python-trio/trustme")
(synopsis "Fake a certificate authority for tests") (synopsis "Fake a certificate authority for tests")
(description (description