gnu: python-base58: Update to 2.1.1.
* gnu/packages/python-crypto.scm (python-base58)[arguments]: Override check phase. [native-inputs]: Add PYTHON-PYTEST and PYTHON-PYTEST-BENCHMARK.
parent
4ccb22802c
commit
c006f68fdb
|
@ -96,17 +96,22 @@ Python. It does not bind to libotr.")
|
||||||
(define-public python-base58
|
(define-public python-base58
|
||||||
(package
|
(package
|
||||||
(name "python-base58")
|
(name "python-base58")
|
||||||
(version "2.0.1")
|
(version "2.1.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "base58" version))
|
(uri (pypi-uri "base58" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0yfaqp76kbdb62hikr5n4jkkfjfmii89grwfy6sw3fmsv5hrap1n"))))
|
"1317ly0db7nnjg5k58f6nqa0svfcvn446xd5bpiyi0bfbczwpl65"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases (modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests? (invoke "pytest" "-vv")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pyhamcrest))
|
(list python-pyhamcrest python-pytest python-pytest-benchmark))
|
||||||
(home-page "https://github.com/keis/base58")
|
(home-page "https://github.com/keis/base58")
|
||||||
(synopsis "Base58 and Base58Check implementation")
|
(synopsis "Base58 and Base58Check implementation")
|
||||||
(description "Base58 and Base58Check implementation compatible
|
(description "Base58 and Base58Check implementation compatible
|
||||||
|
|
Reference in New Issue