mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-eris: Update to 1.0.0.
* gnu/packages/python-xyz.scm (python-eris): Update to 1.0.0. [build-system]: Use pyproject. [arguments] <tests?>: Disable as data files are not provided. [native-inputs]: Add python-setuptools, and python-wheel. [propagated-inputs]: Add python-aiocoap. Change-Id: Ied94fbfce6deca74a9a90f45e33c52aecf52cb7a
This commit is contained in:
parent
e9b17f472a
commit
dc455ba0dd
1 changed files with 20 additions and 10 deletions
|
@ -39781,19 +39781,29 @@ and abstract ELF, PE and MachO formats.")
|
||||||
(define-public python-eris
|
(define-public python-eris
|
||||||
(package
|
(package
|
||||||
(name "python-eris")
|
(name "python-eris")
|
||||||
(version "0.0.2")
|
(version "1.0.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (pypi-uri "eris" version))
|
(method url-fetch)
|
||||||
(sha256
|
(uri (pypi-uri "eris" version))
|
||||||
(base32
|
(sha256
|
||||||
"16wbmahmfzdzrsjbn8jzi79vhghrzvvlcgnym20q0v3p3i4x47pq"))))
|
(base32 "07a69y8w8n0zvdcd7qfcjf2s9hnd5jlbdl57g39ds2bxprzyc8va"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(propagated-inputs (list python-pycryptodome))
|
(arguments
|
||||||
|
;; No tests in PyPI, tests miss data files in Git:
|
||||||
|
;; - tests/test-vectors/test_encode
|
||||||
|
;; - tests/test-vectors/test_decode
|
||||||
|
(list #:tests? #f))
|
||||||
|
(native-inputs
|
||||||
|
(list python-setuptools
|
||||||
|
python-wheel))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-aiocoap
|
||||||
|
python-pycryptodome))
|
||||||
(home-page "https://codeberg.org/eris/python-eris")
|
(home-page "https://codeberg.org/eris/python-eris")
|
||||||
(synopsis "Python implementation of ERIS")
|
(synopsis "Python implementation of ERIS")
|
||||||
(description
|
(description
|
||||||
"Python implementation of the @acronym{ERIS, Encoding for Robust Immutable
|
"Python implementation of the @acronym{ERIS, Encoding for Robust Immutable
|
||||||
Storage}.")
|
Storage}.")
|
||||||
(license license:lgpl3+)))
|
(license license:lgpl3+)))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue