gnu: python-gridmap: Don't use unstable tarball.

* gnu/packages/python-xyz.scm (python-gridmap)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-04-09 00:00:58 +02:00
parent 5c44505b6d
commit 768fea0fd4
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

@ -4456,13 +4456,13 @@ memoizing PEG/Packrat parser in Python.")
(version "0.13.0")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/pygridtools/gridmap/archive/v"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/pygridtools/gridmap.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1gzjg2k6f14i1msm2b0ax8d9ds1hvk6qd5nlaivg8m4cxqp4cp1x"))))
(base32 "1478lbwsr1w24cii2x01m2910fvh8r43ghnb78nc972a96hqiknm"))))
(build-system python-build-system)
(arguments
'(#:tests? #f)) ; FIXME: Requires python-cherrypy.