mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-jsonpatch: Don't use unstable tarball.
* gnu/packages/python-xyz.scm (python-jsonpatch)[source]: Download using git-fetch.
This commit is contained in:
parent
11e46326e3
commit
854c5c9565
1 changed files with 6 additions and 5 deletions
|
@ -13316,14 +13316,15 @@ by path in a JSON document (see RFC 6901).")
|
||||||
(version "1.16")
|
(version "1.16")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
;; pypi version lacks tests.js
|
;; pypi version lacks tests.js
|
||||||
(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
|
||||||
"085ykisl8v7mv9h7hvhdy3l2fjzs4214gx32r5k6nx4f76hbv6y5"))))
|
"0k9pff06lxama3nhsc7cdxbp83422bdy8ifs52i6xkas8hpyzfzr"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-jsonpointer" ,python-jsonpointer)))
|
`(("python-jsonpointer" ,python-jsonpointer)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue