diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-01-26 08:14:18 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-01-26 08:15:09 +0100 |
commit | eff8d773d65d031e67f492c790de3b4b48549883 (patch) | |
tree | e55a69e2926cee39e11632c90ddd069650c80353 /gnu/packages/python.scm | |
parent | 911a8fafb26ee6410ca75fb5ad944ae4e18c8011 (diff) | |
download | patches-eff8d773d65d031e67f492c790de3b4b48549883.tar patches-eff8d773d65d031e67f492c790de3b4b48549883.tar.gz |
gnu: python-mistune: Fix source URI.
* gnu/packages/python.scm (python-mistune)[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 d4a4775bdf..81f9200a5d 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6000,10 +6000,7 @@ complexity of Python source code.") (source (origin (method url-fetch) - (uri (string-append - "https://pypi.python.org/packages/source/m/mistune/mistune-" - version - ".tar.gz")) + (uri (pypi-uri "mistune" version)) (sha256 (base32 "04xpk1zvslhq3xpnf01g3ag0dy9wfv4z28p093r8k49vvxlyil11")))) |