3
4
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

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:
Efraim Flashner 2020-01-06 12:17:47 +02:00
parent 6def31e8fd
commit 837da4d36e
Signed by untrusted user: efraim
GPG key ID: 41AAE7DCCA3D8351

View file

@ -566,13 +566,14 @@ transactions from C or Python.")
(version "1.6.3")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/Anaconda-Platform/"
"anaconda-client/archive/" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/Anaconda-Platform/anaconda-client")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1wv4wi6k5jz7rlwfgvgfdizv77x3cr1wa2aj0k1595g7fbhkjhz2"))))
"0w1bfxnydjl9qp53r2gcvr6vlpdqqilcrzqxrll9sgg6vwdyiyyp"))))
(build-system python-build-system)
(propagated-inputs
`(("python-pyyaml" ,python-pyyaml)