gnu: python2-unicodecsv: Don't use unstable tarball.
* gnu/packages/python-xyz.scm (python2-unicodecsv)[source]: Download using git-fetch.master
parent
6b61fc47e2
commit
f711b71bd5
|
@ -9523,15 +9523,16 @@ encoding algorithms to do fuzzy string matching.")
|
||||||
(name "python2-unicodecsv")
|
(name "python2-unicodecsv")
|
||||||
(version "0.14.1")
|
(version "0.14.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
;; The test suite is not included in the PyPi release.
|
;; The test suite is not included in the PyPi release.
|
||||||
;; https://github.com/jdunck/python-unicodecsv/issues/19
|
;; https://github.com/jdunck/python-unicodecsv/issues/19
|
||||||
(uri (string-append "https://github.com/jdunck/python-unicodecsv/"
|
(uri (git-reference
|
||||||
"archive/" version ".tar.gz"))
|
(url "https://github.com/jdunck/python-unicodecsv")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"087nqanfcyp6mlfbbr5lva5f3w6iz1bybls9xlrb8icmc474wh4w"))))
|
"15hx2k41a2lpv4hcml9zp4cvlx1171mnb5s4s13xc1pxkq3vgdjy"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(;; It supports Python 3, but Python 3 can already do Unicode CSV.
|
`(;; It supports Python 3, but Python 3 can already do Unicode CSV.
|
||||||
|
|
Reference in New Issue