diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-12-16 20:38:39 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 21:37:21 +0100 |
commit | 4627e596ef8244dd10cc6088b6b618d4465f733c (patch) | |
tree | 8b53dd1d0d1256bf7540ce49927fcc469b6ef2e5 | |
parent | 26e74524718ea03c340d0e2c76b1f6b89b7d86a3 (diff) | |
download | guix-4627e596ef8244dd10cc6088b6b618d4465f733c.tar.gz guix-4627e596ef8244dd10cc6088b6b618d4465f733c.zip |
gnu: Add python-packaging-legacy.
* gnu/packages/python-xyz.scm (python-packaging-legacy): New variable.
Change-Id: Ibdb6505baf77e9e9ed93c8b21413f876ada05f5a
-rw-r--r-- | gnu/packages/python-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index cf6236d58b..70c2a735e7 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25927,6 +25927,29 @@ manipulation, or @code{stdout}.") ;; licenses. (license (list license:asl2.0 license:bsd-2)))) +(define-public python-packaging-legacy + (package + (name "python-packaging-legacy") + (version "23.0.post0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "packaging_legacy" version)) + (sha256 + (base32 "1nyryxlc7fd4c0jmfp99az1s61vfv5xbi6017wqi4wd7j4ia8x69")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-packaging)) + (native-inputs + (list python-pretend + python-pytest + python-setuptools + python-wheel)) + (home-page "https://pypi.org/project/packaging-legacy/") + (synopsis "Core utilities for legacy Python packages") + (description "This library provides support for legacy Python Packaging +functionality removed from @code{packaging}.") + (license license:asl2.0))) + (define-public python-relatorio (package (name "python-relatorio") |