guix-commits
[Top][All Lists]
Advanced

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

02/07: gnu: python-jsonpatch: Don't use unstable tarball.


From: guix-commits
Subject: 02/07: gnu: python-jsonpatch: Don't use unstable tarball.
Date: Mon, 6 Jan 2020 04:31:51 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 854c5c95651ef9ab454d2e677dcb12bcf9f8f9b2
Author: Efraim Flashner <address@hidden>
AuthorDate: Mon Jan 6 09:01:41 2020 +0200

    gnu: python-jsonpatch: Don't use unstable tarball.
    
    * gnu/packages/python-xyz.scm (python-jsonpatch)[source]: Download using
    git-fetch.
---
 gnu/packages/python-xyz.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index af435e3..f1d4941 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -13316,14 +13316,15 @@ by path in a JSON document (see RFC 6901).")
     (version "1.16")
     (source
      (origin
-       (method url-fetch)
+       (method git-fetch)
        ;; pypi version lacks tests.js
-       (uri (string-append "https://github.com/stefankoegl/python-json-patch/";
-                           "archive/v" version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (uri (git-reference
+              (url "https://github.com/stefankoegl/python-json-patch";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
         (base32
-         "085ykisl8v7mv9h7hvhdy3l2fjzs4214gx32r5k6nx4f76hbv6y5"))))
+         "0k9pff06lxama3nhsc7cdxbp83422bdy8ifs52i6xkas8hpyzfzr"))))
     (build-system python-build-system)
     (native-inputs
      `(("python-jsonpointer" ,python-jsonpointer)))



reply via email to

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