gnu: python2-scientific: New source code location.
* gnu/packages/python-xyz.scm (python2-scientific): New source code location. Following the annoucement of Bitbucket to delete all Mercurial repositories in June 2020, the source code has been migrated to GitHub. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
e2293cbbe0
commit
c695f011b3
|
@ -14620,14 +14620,14 @@ is the new Pyro version that is actively developed.")
|
||||||
(version "2.9.4")
|
(version "2.9.4")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://bitbucket.org/khinsen/"
|
(uri (git-reference
|
||||||
"scientificpython/downloads/ScientificPython-"
|
(url "https://github.com/khinsen/ScientificPython")
|
||||||
version ".tar.gz"))
|
(commit (string-append "rel" version))))
|
||||||
(file-name (string-append "ScientificPython-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0fc69zhlsn9d2jvbzyjl9ah53vj598h84nkq230c83ahfvgzx5y3"))))
|
"16l48aj9fps9r7jyk8gpxppwrv0fqvlc13sayxskz28r5s6sjwbl"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("netcdf" ,netcdf)))
|
`(("netcdf" ,netcdf)))
|
||||||
|
@ -14645,7 +14645,7 @@ is the new Pyro version that is actively developed.")
|
||||||
(invoke "python" "setup.py" "build"
|
(invoke "python" "setup.py" "build"
|
||||||
(string-append "--netcdf_prefix="
|
(string-append "--netcdf_prefix="
|
||||||
(assoc-ref inputs "netcdf"))))))))
|
(assoc-ref inputs "netcdf"))))))))
|
||||||
(home-page "https://bitbucket.org/khinsen/scientificpython")
|
(home-page "http://dirac.cnrs-orleans.fr/ScientificPython")
|
||||||
(synopsis "Python modules for scientific computing")
|
(synopsis "Python modules for scientific computing")
|
||||||
(description "ScientificPython is a collection of Python modules that are
|
(description "ScientificPython is a collection of Python modules that are
|
||||||
useful for scientific computing. Most modules are rather general (Geometry,
|
useful for scientific computing. Most modules are rather general (Geometry,
|
||||||
|
|
Reference in New Issue