diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2016-09-21 11:58:39 +1000 |
---|---|---|
committer | Ben Woodcroft <donttrustben@gmail.com> | 2016-09-21 11:58:39 +1000 |
commit | 375f224b6869c152a7de68350f2c6faf40544c36 (patch) | |
tree | 942c8e201c6875cdc4f8b869ba8ffaa51078c9da /gnu/packages/python.scm | |
parent | e2ab5a09048e648e6128ad173df3ece8a673c9a3 (diff) | |
download | guix-375f224b6869c152a7de68350f2c6faf40544c36.tar guix-375f224b6869c152a7de68350f2c6faf40544c36.tar.gz |
gnu: python-click: Use 'pypi-uri'.
* gnu/packages/python.scm (python-click, python2-click)[source]: Use
'pypi-uri'.
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r-- | gnu/packages/python.scm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index af5da9beeb..a1865574cb 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2299,10 +2299,7 @@ is used by the Requests library to verify HTTPS requests.") (source (origin (method url-fetch) - (uri (string-append - "https://pypi.python.org/packages/" - "7a/00/c14926d8232b36b08218067bcd5853caefb4737cda3f0a47437151344792/" - "click-" version ".tar.gz")) + (uri (pypi-uri "click" version)) (sha256 (base32 "1sggipyz52crrybwbr9xvwxd4aqigvplf53k9w3ygxmzivd1jsnc")))) |