Archived
1
0
Fork 0

gnu: python-pyodbc-c: Don't use unstable tarball.

* gnu/packages/databases.scm (python-pyodbc-c)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2022-06-05 02:00:01 +02:00
parent 64b12a1abf
commit 289b521584
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -3021,13 +3021,13 @@ development.")
(version "3.1.4") (version "3.1.4")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://gitlab.com/daym/pyodbc-c/repository/" (uri (git-reference
"archive.tar.gz?ref=v" version)) (url "https://gitlab.com/daym/pyodbc-c/")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "1mm2vif3b5yq0j6x3idl748w37n2i6j0clah3h967jyrl4p2c7vi"))))
"05aq2297k779xidmxcwkrrxjvj1bh2q7d9a1rcjv6zr15y764ga9"))
(file-name (string-append name "-" version ".tar.gz"))))
(build-system python-build-system) (build-system python-build-system)
(inputs (inputs
(list unixodbc)) (list unixodbc))