diff options
author | Marius Bakke <marius@gnu.org> | 2022-11-18 09:13:16 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-11-19 22:07:33 +0100 |
commit | 67da1426226f591cf4bec95aabf2e8b607e73d10 (patch) | |
tree | 2ae7e7703382a5be093591190e0c18435a3ae8d3 /gnu | |
parent | b015b3f3a48ee52773b79ba12bf78d5f82c0e2e9 (diff) | |
download | guix-67da1426226f591cf4bec95aabf2e8b607e73d10.tar.gz guix-67da1426226f591cf4bec95aabf2e8b607e73d10.zip |
gnu: Remove obsolete variable.
* gnu/packages/python-xyz.scm (python-packaging-next): Remove variable.
* gnu/packages/openstack.scm (python-oslo.utils)[propagated-inputs]: Change
from PYTHON-PACKAGING-NEXT to PYTHON-PACKAGING.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/openstack.scm | 2 | ||||
-rw-r--r-- | gnu/packages/python-xyz.scm | 13 |
2 files changed, 1 insertions, 14 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index dd13404c87..169df27f7c 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -769,7 +769,7 @@ for debugging, and better support for mocking results.") python-netaddr python-netifaces python-pbr - python-packaging-next + python-packaging python-pyparsing python-pytz)) (native-inputs diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 975b698374..f91662713c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -20252,19 +20252,6 @@ while only declaring the test-specific fields.") ;; licenses. (license (list license:asl2.0 license:bsd-2)))) -;; TODO(staging): merge with python-packaging-bootstrap. -(define-public python-packaging-next - (package - (inherit python-packaging) - (version "21.3") - (source - (origin - (method url-fetch) - (uri (pypi-uri "packaging" version)) - (sha256 - (base32 - "1sygirdrqgv4f1ckh9nhpcw1yfidrh3qjl86wq8vk6nq4wlw8iyx")))))) - (define-public python-relatorio (package (name "python-relatorio") |