diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-06-29 15:15:12 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-06-29 15:47:11 +0200 |
commit | ee81abe23c4d17094df3b17e701d22aaccdc87e8 (patch) | |
tree | a105c3ef37e0ef2fed8c065f498958d8ea4b3793 /gnu/packages | |
parent | 47260205463292bb340ec79255376e9b3f2f1f53 (diff) | |
download | guix-ee81abe23c4d17094df3b17e701d22aaccdc87e8.tar guix-ee81abe23c4d17094df3b17e701d22aaccdc87e8.tar.gz |
gnu: Add python-click@5.
* gnu/packages/python-xyz.scm (python-click-5): New public variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-xyz.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f7ef5da62f..f52132ca5b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2431,6 +2431,18 @@ with sensible defaults out of the box.") (define-public python2-click (package-with-python2 python-click)) +(define-public python-click-5 + (package (inherit python-click) + (name "python-click") + (version "5.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "click" version)) + (sha256 + (base32 "0njsm0wn31l21bi118g5825ma5sa3rwn7v2x4wjd7yiiahkri337")))) + (arguments `()))) + (define-public python-wheel (package (name "python-wheel") |