me
/
guix
Archived
1
0
Fork 0

gnu: python-pyopenssl: Disable tests.

* gnu/packages/python.scm (python-pyopenssl, python2-pyopenssl)[arguments]:
Set #:tests? #f.
[native-inputs]: Add python-pytest.
master
Marius Bakke 2016-12-14 18:34:48 +01:00
parent bd100c7112
commit 30e0229a17
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 5 additions and 0 deletions

View File

@ -6585,11 +6585,16 @@ message digests and key derivation functions.")
(base32
"0vji4yrfshs15xpczbhzhasnjrwcarsqg87n98ixnyafnyxs6ybp"))))
(build-system python-build-system)
(arguments
;; FIXME: Some tests fail with "NameError: name 'long' is not defined".
'(#:tests? #f))
(propagated-inputs
`(("python-cryptography" ,python-cryptography)
("python-six" ,python-six)))
(inputs
`(("openssl" ,openssl)))
(native-inputs
`(("python-pytest" ,python-pytest)))
(home-page "https://github.com/pyca/pyopenssl")
(synopsis "Python wrapper module around the OpenSSL library")
(description