diff options
author | Leo Famulari <leo@famulari.name> | 2018-03-19 12:20:22 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-03-19 12:37:51 -0400 |
commit | 6969ad0eddfb237bfee31fb62ada6a239f5af055 (patch) | |
tree | b8ca7b0db5c713380ba1957c1c6f2c2e49381374 | |
parent | d8f08c85adc18c103e99a706db98e046a5c1c94b (diff) | |
download | patches-6969ad0eddfb237bfee31fb62ada6a239f5af055.tar patches-6969ad0eddfb237bfee31fb62ada6a239f5af055.tar.gz |
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.
-rw-r--r-- | gnu/packages/python-crypto.scm | 7 |
1 files changed, 4 insertions, 3 deletions
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) |