mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-asn1crypto: Respect #:tests?.
* gnu/packages/python-crypto.scm (python-asn1crypto)[#:phases]<check>: Honor argument #:tests?.
This commit is contained in:
parent
c49c43d44c
commit
f5eb5b7cac
1 changed files with 3 additions and 2 deletions
|
@ -750,8 +750,9 @@ ECB and OFB).")
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases (modify-phases %standard-phases
|
'(#:phases (modify-phases %standard-phases
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(invoke "python" "run.py" "tests"))))))
|
(when tests?
|
||||||
|
(invoke "python" "run.py" "tests")))))))
|
||||||
(home-page "https://github.com/wbond/asn1crypto")
|
(home-page "https://github.com/wbond/asn1crypto")
|
||||||
(synopsis "ASN.1 parser and serializer in Python")
|
(synopsis "ASN.1 parser and serializer in Python")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue