diff options
author | Ricardo Wurmus <[email protected]> | 2025-01-06 12:55:09 +0100 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2025-01-20 21:37:37 +0100 |
commit | 9179247361b36d76b69d4a3ed25b562ad3977129 (patch) | |
tree | 50b12967d0de84c1d8b5f3e4b61f4b0378ad422c /gnu/packages/python-xyz.scm | |
parent | 2dc949d6092782cb10e1d41c23477398343a8793 (diff) |
gnu: python-legacy-api-wrap: Update to 1.4.1.
* gnu/packages/python-xyz.scm (python-legacy-api-wrap): Update to 1.4.1.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-coverage, python-hatch-vcs, python-hatchling, and
python-pytest.
[propagated-inputs]: Remove python-get-version, python-pytest,
python-pytest-black, python-pytest-cov, and python-setuptools.
Change-Id: I56ccdc6c9fd8b5e6bcbfcf9255f02949e8f1e705
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a9dc41d1ac..8bfd96e3fa 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17365,18 +17365,20 @@ classes to wrap functions in a similar way, including a function decorator.") (define-public python-legacy-api-wrap (package (name "python-legacy-api-wrap") - (version "1.2") + (version "1.4.1") (source (origin (method url-fetch) - (uri (pypi-uri "legacy-api-wrap" version)) + (uri (pypi-uri "legacy_api_wrap" version)) (sha256 (base32 - "06qhp0g543dy98vpa41hwdalvdbsjfc3ldk474yr9sd75mhl8jh3")))) - (build-system python-build-system) - (propagated-inputs - (list python-get-version python-pytest python-pytest-black - python-pytest-cov python-setuptools)) + "1d5jyd8d2wxm6y0s39wwqw87gdm4zqlbyz78cf3yqbrim1xdch4w")))) + (build-system pyproject-build-system) + (native-inputs + (list python-coverage + python-hatch-vcs + python-hatchling + python-pytest)) (home-page "https://github.com/flying-sheep/legacy-api-wrap") (synopsis "Legacy API wrapper") (description "This module defines a decorator to wrap legacy APIs. The |