mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-josepy: Update to 2.1.0.
* gnu/packages/python-crypto.scm (python-josepy): Update to 2.1.0. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-poetry-core, python-pytest. [propafate-inputs]: Remove python-pyopenssl. [description]: Improve style. Change-Id: I09f14fe5ad1bed2da76057a0295a22aa6ae822e5 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
d3d0a13c3e
commit
7f64ee93ef
1 changed files with 16 additions and 15 deletions
|
@ -917,23 +917,24 @@ Python.")
|
||||||
(define-public python-josepy
|
(define-public python-josepy
|
||||||
(package
|
(package
|
||||||
(name "python-josepy")
|
(name "python-josepy")
|
||||||
(version "1.13.0")
|
(version "2.1.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (pypi-uri "josepy" version))
|
(method git-fetch)
|
||||||
(sha256
|
(uri (git-reference
|
||||||
(base32
|
(url "https://github.com/certbot/josepy")
|
||||||
"1jaxqyp53paks2z8zyzr50gqvzfxbar7r2qf98kqak4aizrxlcc9"))))
|
(commit (string-append "v" version))))
|
||||||
(build-system python-build-system)
|
(file-name (git-file-name name version))
|
||||||
(arguments
|
(sha256
|
||||||
;; TODO: some test dependencies are missing (see pyproject.toml).
|
(base32 "1zplnfrmc4nps9lgl3fz434ja7lmi9v8waydflzvpi75kf5fqxc1"))))
|
||||||
'(#:tests? #f))
|
(build-system pyproject-build-system)
|
||||||
(propagated-inputs
|
(native-inputs (list python-poetry-core python-pytest))
|
||||||
(list python-cryptography python-pyopenssl))
|
(propagated-inputs (list python-cryptography))
|
||||||
(home-page "https://github.com/certbot/josepy")
|
(home-page "https://github.com/certbot/josepy")
|
||||||
(synopsis "JOSE protocol implementation in Python")
|
(synopsis "JOSE protocol implementation in Python")
|
||||||
(description "This package provides a Python implementation of the JOSE
|
(description
|
||||||
protocol (Javascript Object Signing and Encryption).")
|
"This package provides a Python implementation of the JOSE protocol
|
||||||
|
(Javascript Object Signing and Encryption).")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define pycryptodome-unbundle-tomcrypt-snippet
|
(define pycryptodome-unbundle-tomcrypt-snippet
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue