diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2018-08-09 23:34:07 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2018-08-09 23:34:07 +0200 |
commit | 7dab3e61c8b0dfa6f9a9795965def4f40e0d3b33 (patch) | |
tree | d76d840f550a5b1940a715c9f101677c4e0ad6e6 /gnu/packages/finance.scm | |
parent | bcdee2dc336439de5bc90b2712d83ecc865c45d7 (diff) | |
download | patches-7dab3e61c8b0dfa6f9a9795965def4f40e0d3b33.tar patches-7dab3e61c8b0dfa6f9a9795965def4f40e0d3b33.tar.gz |
gnu: python-duniterpy: Update to 0.43.7.
* gnu/packages/finance.scm (python-duniterpy): Update to 0.43.7.
[source]: Change upstream repository, which moved to a Gitlab instance.
[arguments]: Remove phase removing a failing test, no longer needed.
Diffstat (limited to 'gnu/packages/finance.scm')
-rw-r--r-- | gnu/packages/finance.scm | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index fd2a5af0cb..ba0b53745d 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -825,28 +825,19 @@ Luhn and family of ISO/IEC 7064 check digit algorithms. ") (define-public python-duniterpy (package (name "python-duniterpy") - (version "0.43.2") + (version "0.43.7") (source (origin (method git-fetch) ;; Pypi's default URI is missing "requirements.txt" file. (uri (git-reference - (url "https://github.com/duniter/duniter-python-api.git") + (url "https://git.duniter.org/clients/python/duniterpy.git") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 - "1ch4f150k1p1l876pp08p5rxqhpv5xfbxdw6njcmr06hspv8v8x4")))) + "19m36z98361bqxjdb65597j2kxbly491927c6p9z47s1vxc3raaq")))) (build-system python-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - ;; Among 108 tests, a single one is failing: FAIL: - ;; test_from_pubkey. Remove it. - (add-after 'unpack 'remove-failing-test - (lambda _ - (delete-file "tests/documents/test_crc_pubkey.py") - #t))))) (propagated-inputs `(("python-aiohttp" ,python-aiohttp) ("python-base58" ,python-base58) |