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:
parent
fc12113704
commit
8e84eb6847
|
@ -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)))
|
||||||
|
|
Loading…
Reference in New Issue