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
1 changed files with 4 additions and 7 deletions

View File

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