diff options
author | Leo Famulari <leo@famulari.name> | 2016-02-16 05:44:10 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-02-17 22:43:08 -0500 |
commit | 42e92e069a56f830e33f83c2ab85a0bf50139649 (patch) | |
tree | 412dd9fa3e2412dffbefea9e7b26cbabdcd4166a | |
parent | 50aaec25caa7761849cd4fcbb2b33aeb7b839357 (diff) | |
download | guix-42e92e069a56f830e33f83c2ab85a0bf50139649.tar guix-42e92e069a56f830e33f83c2ab85a0bf50139649.tar.gz |
gnu: letsencrypt and python-acme: Update to 0.4.0.
These packages should be updated together.
* gnu/packages/tls.scm (letsencrypt): Update to 0.4.0.
(python-acme, python2-acme): Update to 0.4.0.
-rw-r--r-- | gnu/packages/tls.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index a7945baf10..3aca5f309f 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -321,13 +321,13 @@ security, and applying best practice development processes.") (define-public python-acme (package (name "python-acme") - (version "0.3.0") + (version "0.4.0") (source (origin (method url-fetch) (uri (pypi-uri "acme" version)) (sha256 (base32 - "1x6fd3cw9pq45k71rgmxi91hmdmnbf1xxvlfwv31fmzs5255dlbw")))) + "173j2zkslh43fzf3wkl1jdzfjry361m0mhlc3jpwp7hk7lrclzjg")))) (build-system python-build-system) (arguments `(#:phases @@ -366,13 +366,13 @@ security, and applying best practice development processes.") (define-public letsencrypt (package (name "letsencrypt") - (version "0.3.0") + (version "0.4.0") (source (origin (method url-fetch) (uri (pypi-uri "letsencrypt" version)) (sha256 (base32 - "0jg9ymdh1mgzx4gs16lsidffswn9pib94n7jahm941bgfdl8kd8h")))) + "1wwq8yvfdybf4d0gv4yfddkrg865s7rhng5xg563kks4wza1a2wp")))) (build-system python-build-system) (arguments `(#:python ,python-2)) |