me
/
guix
Archived
1
0
Fork 0

gnu: poetry: Fix a problem with a dependency.

* gnu/packages/python-xyz.scm (poetry)[arguments]: Relax version constraints
for python-packaging.

Signed-off-by: Marius Bakke <marius@gnu.org>
master
Tanguy Le Carrour 2020-12-02 09:33:54 +01:00 committed by Marius Bakke
parent 19f1307a59
commit d18a4375f3
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 4 additions and 1 deletions

View File

@ -13227,7 +13227,10 @@ compatible build front-ends to build Poetry managed projects.")
(substitute* "setup.py"
;; Newer versions of keyring produce a package with version "0.0.0"
;; Reported upstream: <https://github.com/jaraco/keyring/issues/469>
(("keyring>=21.2.0,<22.0.0") "keyring>=21.0.0,<22.0.0"))
(("keyring>=21.2.0,<22.0.0") "keyring>=21.0.0,<22.0.0")
;; TODO: remove after the next release cycle,
;; when packaging has been updated.
(("packaging>=20.4,<21.0") "packaging>=20.0,<21.0"))
#t)))))
(propagated-inputs
`(("python-cachecontrol" ,python-cachecontrol)