gnu: python-paramz: Update to 0.9.6.
* gnu/packages/python-science.scm (python-paramz): Update to 0.9.6. [build-system]: Use pyproject-build-system. [native-inputs]: Add python-nose. Change-Id: I62a2f7ecf600f48da74f4d233e108360a583d5ca
This commit is contained in:
parent
041ea43a86
commit
9d615b915b
1 changed files with 9 additions and 5 deletions
|
@ -2789,16 +2789,20 @@ heavily biased to machine learning scenarios. It works on top of
|
||||||
(define-public python-paramz
|
(define-public python-paramz
|
||||||
(package
|
(package
|
||||||
(name "python-paramz")
|
(name "python-paramz")
|
||||||
(version "0.9.5")
|
(version "0.9.6")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (pypi-uri "paramz" version))
|
(uri (git-reference
|
||||||
|
(url "https://github.com/sods/paramz")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"16hbh97kj6b1c2gw22rqnr3w3nqkszh9gj8vgx738gq81wf225q9"))))
|
"1ywc2jzj40m6wmq227j3snxvp4434s0m1xk1abg6v6mr87pv2sa9"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(propagated-inputs (list python-decorator python-numpy python-scipy
|
(propagated-inputs (list python-decorator python-numpy python-scipy
|
||||||
python-six))
|
python-six))
|
||||||
|
(native-inputs (list python-nose))
|
||||||
(home-page "https://github.com/sods/paramz")
|
(home-page "https://github.com/sods/paramz")
|
||||||
(synopsis "The Parameterization Framework")
|
(synopsis "The Parameterization Framework")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue