gnu: python-ecdsa: Actually run the test suite.
* gnu/packages/python-crypto.scm (python-ecdsa)[arguments]: Replace 'check phase. [native-inputs]: Add python-pytest.
This commit is contained in:
parent
c57b8419f4
commit
92fe25130c
1 changed files with 7 additions and 1 deletions
|
@ -240,10 +240,16 @@ Python interface around SSH networking concepts.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "13nx5cbfxc0gnax5zwdmp9xc40qd1llk62mv85jyrvqkbw017ik4"))))
|
(base32 "13nx5cbfxc0gnax5zwdmp9xc40qd1llk62mv85jyrvqkbw017ik4"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda _ (invoke "pytest"))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-six" ,python-six)))
|
`(("python-six" ,python-six)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("openssl" ,openssl)))
|
`(("openssl" ,openssl)
|
||||||
|
("python-pytest" ,python-pytest)))
|
||||||
(home-page "https://github.com/warner/python-ecdsa")
|
(home-page "https://github.com/warner/python-ecdsa")
|
||||||
(synopsis "ECDSA cryptographic signature library (pure python)")
|
(synopsis "ECDSA cryptographic signature library (pure python)")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue