diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2024-12-19 11:49:34 +0100 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2024-12-19 11:49:34 +0100 |
commit | 6fbd215c0e49fef8b4b21aba22fbd2de0b116c4f (patch) | |
tree | 7c8da4f9667946bdd9006110953a9a758ce998d1 /gnu/packages/python-xyz.scm | |
parent | 269f94c18dae8ca3ce717ef2e3d383a6fc553227 (diff) |
gnu: python-construct: Update to 2.10.70-1.c1171b1.
* gnu/packages/python-xyz.scm (python-construct): Update to 2.10.70-1.c1171b1.
[propagated-inputs]: Add python-cryptography.
Change-Id: Ie7d877827865224f90d8588f1706a354443de02c
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 73 |
1 files changed, 39 insertions, 34 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 21845c446d..dec2bdeaed 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -30180,45 +30180,50 @@ class in a @acronym{DRY, Don't Repeat Yourself} way.") (license license:expat))) (define-public python-construct - (package - (name "python-construct") - (version "2.10.68") - (source - (origin - ;; There are no tests in the PyPI tarball. - (method git-fetch) - (uri (git-reference - (url "https://github.com/construct/construct") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1b59kq8scxhn9afqgmksk45n53gawylqm8gw3k0vmljg274xi7vf")))) - (build-system python-build-system) - (arguments - (list #:phases - #~(modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest" "-v" "tests/"))))))) - (native-inputs - (list python-pytest python-pytest-benchmark)) - (propagated-inputs - (list python-arrow - python-cloudpickle - python-lz4 - python-numpy - python-ruamel.yaml)) - (home-page "https://construct.readthedocs.io") - (synopsis "Declarative and symmetrical parser and builder for binary data") - (description - "This package provides both simple, atomic constructs (such as + ;; Fixes not in a release yet. + (let ((commit "c1171b16bda1d213ba4858f3e0e4d4003e4aae90") + (revision "1")) + (package + (name "python-construct") + (version (git-version "2.10.70" revision commit)) + (source + (origin + ;; There are no tests in the PyPI tarball. + (method git-fetch) + (uri (git-reference + (url "https://github.com/construct/construct") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "03f6nvyzrq50nhqqwmmws983wwjg78yd9j09pl94vkmyjph33da5")))) + (build-system python-build-system) + (arguments + (list #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "pytest" "-v" "tests/"))))))) + (native-inputs + (list python-pytest + python-pytest-benchmark)) + (propagated-inputs + (list python-arrow + python-cloudpickle + python-cryptography + python-lz4 + python-numpy + python-ruamel.yaml)) + (home-page "https://construct.readthedocs.io") + (synopsis "Declarative and symmetrical parser and builder for binary data") + (description + "This package provides both simple, atomic constructs (such as integers of various sizes), as well as composite ones which allow you form hierarchical and sequential structures of increasing complexity. It features bit and byte granularity, easy debugging and testing, an easy-to-extend subclass system, and lots of primitive constructs to make your work easier.") - (license license:expat))) + (license license:expat)))) (define-public python-outcome (package |