mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-anaconda-client: Fix tests.
* gnu/packages/package-management.scm (python-anaconda-client)[source]: Add workaround for missing `iter_fields'. Change-Id: Ia8a17b6778e8cc8b8e734c3e788e938250d641a7 Reported-by: orahcio on IRC.
This commit is contained in:
parent
b85d20e853
commit
8f8aa5cf58
1 changed files with 7 additions and 1 deletions
|
@ -1062,7 +1062,13 @@ the @code{(bffe)} module as the entry point.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1vyk0g0gci4z9psisb8h50zi3j1nwfdg1jw3j76cxv0brln0v3fw"))))
|
"1vyk0g0gci4z9psisb8h50zi3j1nwfdg1jw3j76cxv0brln0v3fw"))
|
||||||
|
;; `iter_fields' is no longer available in python-urllib (propagated from
|
||||||
|
;; python-requests).
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
#~(substitute* "binstar_client/requests_ext.py"
|
||||||
|
(("iter_fields") "iter_field_objects")))))
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue