gnu: python-paramiko: Update to 2.4.1 [fixes CVE-2018-7750].

* gnu/packages/python-crypto.scm (python-paramiko): Update to 2.4.1.
[arguments]: Set #:tests? #f.
This commit is contained in:
Marius Bakke 2018-04-12 20:09:58 +02:00
parent fc12113704
commit 8e84eb6847
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -122,21 +122,18 @@ (define-public python2-py-bcrypt
(define-public python-paramiko
(package
(name "python-paramiko")
(version "2.1.5")
(version "2.4.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "paramiko" version))
(sha256
(base32
"1pf0zxzhgyy4avby3ajg5hp18b0d8iirbkdfw53z0h6w611bp0wk"))))
"1wx4s95i2cdh8hhi1c3jb8lzk71jifa3z9wjfsx905y7lrsngqrk"))))
(build-system python-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda _
(zero? (system* "python" "test.py")))))))
`(;; FIXME: Tests require many unpackaged libraries, see dev-requirements.txt.
#:tests? #f))
(propagated-inputs
`(("python-pyasn1" ,python-pyasn1)
("python-cryptography" ,python-cryptography)))