gnu: python-jsonpatch-0.4: Don't use unstable tarball.

* gnu/packages/python-xyz.scm (python-jsonpatch-0.4)[source]: Download
using git-fetch.
This commit is contained in:
Efraim Flashner 2020-01-06 09:03:17 +02:00
parent 854c5c9565
commit a9722d0dbf
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -13343,13 +13343,14 @@ (define-public python-jsonpatch-0.4
(version "0.4")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/stefankoegl/python-json-patch/"
"archive/v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(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
"0j0cd9z9zyp8kppp464jxrfgrnbgkzl1yi10i5gsv8yz6d95929d"))))))
"1fq02y57kinyknxjcav0slcb0k9mwdffqw2hnlhdkpj7palh2mwk"))))))
(define-public python2-jsonpatch-0.4
(package-with-python2 python-jsonpatch-0.4))