diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2019-12-18 09:54:47 +0200 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2019-12-18 09:54:47 +0200 |
| commit | 92fe25130c1521d3976e1053fc50be38b72ecc55 (patch) | |
| tree | 4271ed3712ee12310f97ee9fc35cb611e36cda7a /gnu/packages/python-crypto.scm | |
| parent | c57b8419f4b9ccd4ee27ed052346f192b9e28366 (diff) | |
gnu: python-ecdsa: Actually run the test suite.
* gnu/packages/python-crypto.scm (python-ecdsa)[arguments]: Replace
'check phase.
[native-inputs]: Add python-pytest.
Diffstat (limited to 'gnu/packages/python-crypto.scm')
| -rw-r--r-- | gnu/packages/python-crypto.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index 65594a5aa6b..63d3be17c29 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm | |||
| @@ -240,10 +240,16 @@ Python interface around SSH networking concepts.") | |||
| 240 | (sha256 | 240 | (sha256 |
| 241 | (base32 "13nx5cbfxc0gnax5zwdmp9xc40qd1llk62mv85jyrvqkbw017ik4")))) | 241 | (base32 "13nx5cbfxc0gnax5zwdmp9xc40qd1llk62mv85jyrvqkbw017ik4")))) |
| 242 | (build-system python-build-system) | 242 | (build-system python-build-system) |
| 243 | (arguments | ||
| 244 | '(#:phases | ||
| 245 | (modify-phases %standard-phases | ||
| 246 | (replace 'check | ||
| 247 | (lambda _ (invoke "pytest")))))) | ||
| 243 | (propagated-inputs | 248 | (propagated-inputs |
| 244 | `(("python-six" ,python-six))) | 249 | `(("python-six" ,python-six))) |
| 245 | (native-inputs | 250 | (native-inputs |
| 246 | `(("openssl" ,openssl))) | 251 | `(("openssl" ,openssl) |
| 252 | ("python-pytest" ,python-pytest))) | ||
| 247 | (home-page "https://github.com/warner/python-ecdsa") | 253 | (home-page "https://github.com/warner/python-ecdsa") |
| 248 | (synopsis "ECDSA cryptographic signature library (pure python)") | 254 | (synopsis "ECDSA cryptographic signature library (pure python)") |
| 249 | (description | 255 | (description |
