summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-01 13:56:26 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-07-03 12:26:48 +0100
commitdc455ba0dd09bc32f050013a1424b5c442bfcb86 (patch)
treed9decdd4979772914990465ed5fcefc2a02d1bfb /gnu
parente9b17f472a1230ac445eb4c9acb205ea4bdc8f19 (diff)
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
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm30
1 files changed, 20 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 435475763f9..5a008202201 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -39781,19 +39781,29 @@ and abstract ELF, PE and MachO formats.")
39781(define-public python-eris 39781(define-public python-eris
39782 (package 39782 (package
39783 (name "python-eris") 39783 (name "python-eris")
39784 (version "0.0.2") 39784 (version "1.0.0")
39785 (source (origin 39785 (source
39786 (method url-fetch) 39786 (origin
39787 (uri (pypi-uri "eris" version)) 39787 (method url-fetch)
39788 (sha256 39788 (uri (pypi-uri "eris" version))
39789 (base32 39789 (sha256
39790 "16wbmahmfzdzrsjbn8jzi79vhghrzvvlcgnym20q0v3p3i4x47pq")))) 39790 (base32 "07a69y8w8n0zvdcd7qfcjf2s9hnd5jlbdl57g39ds2bxprzyc8va"))))
39791 (build-system python-build-system) 39791 (build-system pyproject-build-system)
39792 (propagated-inputs (list python-pycryptodome)) 39792 (arguments
39793 ;; No tests in PyPI, tests miss data files in Git:
39794 ;; - tests/test-vectors/test_encode
39795 ;; - tests/test-vectors/test_decode
39796 (list #:tests? #f))
39797 (native-inputs
39798 (list python-setuptools
39799 python-wheel))
39800 (propagated-inputs
39801 (list python-aiocoap
39802 python-pycryptodome))
39793 (home-page "https://codeberg.org/eris/python-eris") 39803 (home-page "https://codeberg.org/eris/python-eris")
39794 (synopsis "Python implementation of ERIS") 39804 (synopsis "Python implementation of ERIS")
39795 (description 39805 (description
39796"Python implementation of the @acronym{ERIS, Encoding for Robust Immutable 39806 "Python implementation of the @acronym{ERIS, Encoding for Robust Immutable
39797Storage}.") 39807Storage}.")
39798 (license license:lgpl3+))) 39808 (license license:lgpl3+)))
39799 39809