gnu: python-pynbody: Update to 1.4.1.
* gnu/packages/astronomy.scm (python-pynbody): Update to 1.4.1. [source]: Switch to git-fetch. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
0d7e51d8ee
commit
4d4e9b84ee
1 changed files with 12 additions and 4 deletions
|
@ -3534,13 +3534,21 @@ functions, so that they can be called with scalar or array inputs.")
|
||||||
(define-public python-pynbody
|
(define-public python-pynbody
|
||||||
(package
|
(package
|
||||||
(name "python-pynbody")
|
(name "python-pynbody")
|
||||||
(version "1.3.1")
|
(version "1.4.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch) ;PyPi doesn't have not prebuit version.
|
||||||
(uri (pypi-uri "pynbody" version))
|
(uri (git-reference
|
||||||
|
(url "https://github.com/pynbody/pynbody")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1yp7ja66zqmbnh7bbwbyimxq1nkrmjrcif2rzfm1hswm0fp2fbga"))))
|
(base32 "1vl1yif3bsazcil6saghrpa4qsg47fnr7xnkjpqnp44b7ipww27r"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
;; Symlink goes to not existing directory.
|
||||||
|
#~(for-each delete-file '("docs/testdata"
|
||||||
|
"docs/tutorials/example_code/testdata")))))
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:test-flags #~(list
|
(list #:test-flags #~(list
|
||||||
|
|
Reference in a new issue