mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 07:00:32 -05:00
gnu: python-colorspacious: Don't use unstable tarball.
* gnu/packages/python-xyz.scm (python-colorspacious)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
c74da2b6c4
commit
dee92e65a2
1 changed files with 8 additions and 7 deletions
|
@ -3521,13 +3521,14 @@ (define-public python-colorspacious
|
||||||
(name "python-colorspacious")
|
(name "python-colorspacious")
|
||||||
(version "1.1.0")
|
(version "1.1.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/njsmith/colorspacious/archive/v"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/njsmith/colorspacious.git")
|
||||||
(file-name (string-append name "-" version))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32 "1vflh5jm32qb0skza2i8pjacv09w6gq84fqpp2nj77s0rbmzgr4k"))))
|
(sha256
|
||||||
|
(base32 "0g0lxqiscy5g5rq9421vv7abg0c90jzy0zmas2z3hya6k2dr5aid"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-numpy" ,python-numpy)))
|
`(("python-numpy" ,python-numpy)))
|
||||||
|
|
Loading…
Reference in a new issue