summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorLeo Famulari <leo@famulari.name>2016-03-22 18:11:08 -0400
committerMark H Weaver <mhw@netris.org>2016-04-04 12:32:59 -0400
commit2fc629ddc4580e081127f661c4b463e11b6e3dee (patch)
treeaa19de601389f1fa07210d9f12cc738840bb26f7 /gnu
parent4f363e73f8ab537786e6036c796ad20bebc76a97 (diff)
gnu: python-pyopenssl: Update to 16.0.0.
* gnu/packages/python.scm (python-pyopenssl, python2-pyopenssl): Update to 16.0.0. [arguments]: Remove field.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python.scm25
1 files changed, 2 insertions, 23 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index c6f30ca1d32..150fce95403 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -5912,7 +5912,7 @@ message digests and key derivation functions.")
5912(define-public python-pyopenssl 5912(define-public python-pyopenssl
5913 (package 5913 (package
5914 (name "python-pyopenssl") 5914 (name "python-pyopenssl")
5915 (version "0.15.1") 5915 (version "16.0.0")
5916 (source 5916 (source
5917 (origin 5917 (origin
5918 (method url-fetch) 5918 (method url-fetch)
@@ -5920,29 +5920,8 @@ message digests and key derivation functions.")
5920 "pyOpenSSL/pyOpenSSL-" version ".tar.gz")) 5920 "pyOpenSSL/pyOpenSSL-" version ".tar.gz"))
5921 (sha256 5921 (sha256
5922 (base32 5922 (base32
5923 "0wnnq15rhj7fhdcd8ycwiw6r6g3w9f9lcy6cigg8226vsrq618ph")))) 5923 "0zfijaxlq4vgi6jz0d4i5xq9ygqnyps6br7lmigjhqnh8gp10g9n"))))
5924 (build-system python-build-system) 5924 (build-system python-build-system)
5925 (arguments
5926 `(#:phases
5927 (modify-phases %standard-phases
5928 (add-after 'unpack 'fix-tests
5929 (lambda* (#:key inputs #:allow-other-keys)
5930 (substitute* "OpenSSL/test/test_ssl.py"
5931 (("client\\.connect\\(\\('verisign\\.com', 443\\)\\)")
5932 "return True")
5933 ;; FIXME: disable broken test
5934 (("test_set_tmp_ecdh") "disabled__set_tmp_ecdh"))
5935 (substitute* "OpenSSL/test/test_crypto.py"
5936 (("command = b\"openssl \"")
5937 (string-append "command = b\""
5938 (assoc-ref inputs "openssl")
5939 "/bin/openssl" " \""))
5940 ;; FIXME: disable four broken tests
5941 (("test_der") "disabled__der")
5942 (("test_digest") "disabled__digest")
5943 (("test_get_extension") "disabled__get_extension")
5944 (("test_extension_count") "disabled__extension_count"))
5945 #t)))))
5946 (propagated-inputs 5925 (propagated-inputs
5947 `(("python-cryptography" ,python-cryptography) 5926 `(("python-cryptography" ,python-cryptography)
5948 ("python-six" ,python-six))) 5927 ("python-six" ,python-six)))