diff options
-rw-r--r-- | gnu/packages/python-crypto.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index 3d347fee0b..e6483996fd 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -750,8 +750,9 @@ ECB and OFB).") (arguments '(#:phases (modify-phases %standard-phases (replace 'check - (lambda _ - (invoke "python" "run.py" "tests")))))) + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "python" "run.py" "tests"))))))) (home-page "https://github.com/wbond/asn1crypto") (synopsis "ASN.1 parser and serializer in Python") (description |