From 6969ad0eddfb237bfee31fb62ada6a239f5af055 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Mon, 19 Mar 2018 12:20:22 -0400 Subject: gnu: python-pynacl: Update to 1.2.0. * gnu/packages/python-crypto.scm (python-pynacl): Update to 1.2.0. [native-inputs]: Add python-hypothesis. --- gnu/packages/python-crypto.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'gnu/packages/python-crypto.scm') diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index 3734b6ba10..e94ca305ee 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -556,7 +556,7 @@ PKCS#8, PKCS#12, PKCS#5, X.509 and TSP.") (define-public python-pynacl (package (name "python-pynacl") - (version "1.1.2") + (version "1.2.0") (source (origin (method url-fetch) @@ -566,7 +566,7 @@ PKCS#8, PKCS#12, PKCS#5, X.509 and TSP.") (snippet '(delete-file-recursively "src/libsodium")) (sha256 (base32 - "135gz0020fqx8fbr9izpwyq49aww202nkqacq0cw61xz99sjpx9j")))) + "01vjq0pxyw1mxaqy013hzs8nknmvg3kpzlzmh69jxznyipgvria5")))) (build-system python-build-system) (arguments `(#:phases @@ -576,7 +576,8 @@ PKCS#8, PKCS#12, PKCS#5, X.509 and TSP.") (setenv "SODIUM_INSTALL" "system") #t))))) (native-inputs - `(("python-pytest" ,python-pytest))) + `(("python-hypothesis" ,python-hypothesis) + ("python-pytest" ,python-pytest))) (propagated-inputs `(("python-cffi" ,python-cffi) ("python-six" ,python-six) -- cgit v1.2.3 From 9687d4042a986b5ef140a5b9a8103b07a08eda10 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Mon, 19 Mar 2018 12:17:24 -0400 Subject: gnu: python-paramiko: Update to 2.1.5. * gnu/packages/python-crypto.scm (python-paramiko, python2-paramiko): Update to 2.1.5. --- gnu/packages/python-crypto.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/python-crypto.scm') diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index e94ca305ee..e8cbacc4ec 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -122,14 +122,14 @@ John the Ripper).") (define-public python-paramiko (package (name "python-paramiko") - (version "2.1.2") + (version "2.1.5") (source (origin (method url-fetch) (uri (pypi-uri "paramiko" version)) (sha256 (base32 - "04734n0wy3hxk6rij4fr29in5jmr70nxpc7pqi2ksbjysfz4kbjz")))) + "1pf0zxzhgyy4avby3ajg5hp18b0d8iirbkdfw53z0h6w611bp0wk")))) (build-system python-build-system) (arguments '(#:phases -- cgit v1.2.3 From 818e6d9704ccccfe72ce26331ff646d5beb1efd5 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 20 Mar 2018 01:25:10 +0100 Subject: gnu: python-cryptography: Update to 2.2. * gnu/packages/python-crypto.scm (python-cryptography-vectors, python-cryptography): Update to 2.2. --- gnu/packages/python-crypto.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gnu/packages/python-crypto.scm') diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index e8cbacc4ec..3fbaf1c3c4 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -281,14 +281,14 @@ is used by the Requests library to verify HTTPS requests.") (define-public python-cryptography-vectors (package (name "python-cryptography-vectors") - (version "2.1.4") + (version "2.2") (source (origin (method url-fetch) (uri (pypi-uri "cryptography_vectors" version)) (sha256 (base32 - "1jm5c33qaz297sf99kz9kw8xi792ap9m6bwf0dfylls8z3rv9i3q")))) + "03cpmi5azvipphmva7dxv8k3w7ffblvn5452rs5r6smdhxyiqq6g")))) (build-system python-build-system) (home-page "https://github.com/pyca/cryptography") (synopsis "Test vectors for the cryptography package") @@ -303,14 +303,14 @@ is used by the Requests library to verify HTTPS requests.") (define-public python-cryptography (package (name "python-cryptography") - (version "2.1.4") + (version "2.2") (source (origin (method url-fetch) (uri (pypi-uri "cryptography" version)) (sha256 (base32 - "14aj5ipbj1w5kba2hv6323954pachhflfrjhhmkjwssv3hvngng4")))) + "0j2gwr4qxvskip77z4n9nqvr4vi243n3bzij18ay4drc6sg2g87m")))) (build-system python-build-system) (inputs `(("openssl" ,openssl))) -- cgit v1.2.3