diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-08-10 15:32:51 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-08-10 15:32:51 +0200 |
commit | 7b38f045c04fe69001ff5c2f04486cc51a69ae82 (patch) | |
tree | bd839f1f635dc114c84d67c1db09b74f613ec315 /gnu/packages/finance.scm | |
parent | 369d15674c8bb251c45a45466031a2da1640df9f (diff) | |
parent | 256d5c6e339d59287284bb83f35c594f13bd08f9 (diff) | |
download | guix-7b38f045c04fe69001ff5c2f04486cc51a69ae82.tar guix-7b38f045c04fe69001ff5c2f04486cc51a69ae82.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/finance.scm')
-rw-r--r-- | gnu/packages/finance.scm | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index fd2a5af0cb..2cbd4854ec 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) @@ -854,7 +845,7 @@ Luhn and family of ISO/IEC 7064 check digit algorithms. ") ("python-libnacl" ,python-libnacl) ("python-pylibscrypt" ,python-pylibscrypt) ("python-pypeg2" ,python-pypeg2))) - (home-page "https://github.com/duniter/duniter-python-api") + (home-page "https://git.duniter.org/clients/python/duniterpy") (synopsis "Python implementation of Duniter API") (description "@code{duniterpy} is an implementation of @uref{https://github.com/duniter/duniter/, duniter} API. Its |