me
/
guix
Archived
1
0
Fork 0

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

* gnu/packages/python-xyz.scm (python-jsonpatch-0.4)[source]: Download
using git-fetch.
master
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
1 changed files with 6 additions and 5 deletions

View File

@ -13343,13 +13343,14 @@ applying JSON Patches according to RFC 6902.")
(version "0.4") (version "0.4")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/stefankoegl/python-json-patch/" (uri (git-reference
"archive/v" version ".tar.gz")) (url "https://github.com/stefankoegl/python-json-patch")
(file-name (string-append name "-" version ".tar.gz")) (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"0j0cd9z9zyp8kppp464jxrfgrnbgkzl1yi10i5gsv8yz6d95929d")))))) "1fq02y57kinyknxjcav0slcb0k9mwdffqw2hnlhdkpj7palh2mwk"))))))
(define-public python2-jsonpatch-0.4 (define-public python2-jsonpatch-0.4
(package-with-python2 python-jsonpatch-0.4)) (package-with-python2 python-jsonpatch-0.4))