diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-10-17 21:59:46 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-10-17 21:59:46 +0200 |
commit | b75ef68a081d14be74a27f8581c9569d8af304d2 (patch) | |
tree | 2ce815caef6ada47663d17b13566f554e4c97a29 /gnu | |
parent | e97be4a3c750fceec1d4d691484de36c60f7c424 (diff) | |
download | guix-b75ef68a081d14be74a27f8581c9569d8af304d2.tar.gz guix-b75ef68a081d14be74a27f8581c9569d8af304d2.zip |
gnu: python-duniterpy: Update to 0.60.0.
* gnu/packages/finance.scm (python-duniterpy): Update to 0.60.0.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/finance.scm | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 7b1f93c139..182d38c1a9 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -1034,26 +1034,18 @@ Luhn and family of ISO/IEC 7064 check digit algorithms. ") (define-public python-duniterpy (package (name "python-duniterpy") - (version "0.57.0") + (version "0.60.0") (source (origin (method url-fetch) (uri (pypi-uri "duniterpy" version)) (sha256 - (base32 "0rw2c7r9gcqhymp82gbk1ky45zqbypsi2q5x4vdwjc6g00kh7h6l")))) + (base32 "0djn6ykmqbp8l2xbg6z8r7rkz9ijgygp2pr0gc6i7dsrlsqmjh32")))) (build-system python-build-system) (arguments - ;; FIXME: Tests fail with: "ModuleNotFoundError: No module named - ;; 'tests'". Not sure how to handle this. - `(#:tests? #f - #:phases - (modify-phases %standard-phases - ;; "setup.py" tries to open missing "requirements.txt". - (add-after 'unpack 'ignore-missing-file - (lambda _ - (substitute* "setup.py" - (("open\\('requirements\\.txt'\\)") "[]")) - #t))))) + ;; FIXME: Tests fail with: "TypeError: block_uid() missing 1 required + ;; positional argument: 'value'". + `(#:tests? #f)) (propagated-inputs `(("aiohttp" ,python-aiohttp) ("attrs" ,python-attrs) |