mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
gnu: python2-numpy@1.8: Don't use unstable tarball.
* gnu/packages/python-xyz.scm (python2-numpy-1.8)[source]: Download using git-fetch.
This commit is contained in:
parent
5912aa4d0e
commit
6b61fc47e2
1 changed files with 6 additions and 5 deletions
|
@ -3430,13 +3430,14 @@ (define-public python2-numpy-1.8
|
|||
(version "1.8.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://github.com/numpy/numpy/archive/v" version ".tar.gz"))
|
||||
(file-name (string-append "python2-numpy-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/numpy/numpy")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name "numpy" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0sc20gz1b17xnyrkp5frca3ql5qfalpv916hfg2kqxpwr6jg0f1g"))))
|
||||
"0ikgi15rsqwbkfsjjxrwh40lqyal2wvyp3923y6w6ch3dcr82sfk"))))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments python2-numpy)
|
||||
((#:phases phases)
|
||||
|
|
Loading…
Reference in a new issue