gnu: python-anaconda-client: Don't use unstable tarball.
* gnu/packages/package-management.scm (python-anaconda-client)[source]: Download using git-fetch.
This commit is contained in:
parent
6def31e8fd
commit
837da4d36e
1 changed files with 6 additions and 5 deletions
|
@ -566,13 +566,14 @@ transactions from C or Python.")
|
||||||
(version "1.6.3")
|
(version "1.6.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/Anaconda-Platform/"
|
(uri (git-reference
|
||||||
"anaconda-client/archive/" version ".tar.gz"))
|
(url "https://github.com/Anaconda-Platform/anaconda-client")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1wv4wi6k5jz7rlwfgvgfdizv77x3cr1wa2aj0k1595g7fbhkjhz2"))))
|
"0w1bfxnydjl9qp53r2gcvr6vlpdqqilcrzqxrll9sgg6vwdyiyyp"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-pyyaml" ,python-pyyaml)
|
`(("python-pyyaml" ,python-pyyaml)
|
||||||
|
|
Reference in a new issue