guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: guix-commits
Subject: 74/88: gnu: python-gridmap: Don't use unstable tarball.
Date: Wed, 10 Apr 2019 23:44:48 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 768fea0fd4b77d765472576f13ccf17e25182271
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Tue Apr 9 00:00:58 2019 +0200

    gnu: python-gridmap: Don't use unstable tarball.
    
    * gnu/packages/python-xyz.scm (python-gridmap)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
---
 gnu/packages/python-xyz.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 014026d..ae3d842 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]