gnu: python-pyopenssl: Disable tests.

* gnu/packages/python.scm (python-pyopenssl, python2-pyopenssl)[arguments]:
Set #:tests? #f.
[native-inputs]: Add python-pytest.
This commit is contained in:
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

View file

@ -6585,11 +6585,16 @@ (define-public python-pyopenssl
(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