mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 12:47:33 -05:00
gnu: Add python-uncertainties.
* gnu/packages/python-xyz.scm (python-uncertainties): New variable.
This commit is contained in:
parent
714a8faa04
commit
8b85aea49b
1 changed files with 28 additions and 0 deletions
|
@ -11558,6 +11558,34 @@ (define-public python-symengine
|
|||
manipulation library.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-uncertainties
|
||||
(package
|
||||
(name "python-uncertainties")
|
||||
(version "3.1.5")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "uncertainties" version))
|
||||
(sha256
|
||||
(base32
|
||||
"00z9xl40czmqk0vmxjvmjvwb41r893l4dad7nj1nh6blw3kw28li"))))
|
||||
(build-system python-build-system)
|
||||
;; While there are test files, there is no "tests" directory, so the tests
|
||||
;; fail.
|
||||
(arguments '(#:tests? #false))
|
||||
(propagated-inputs
|
||||
`(("python-future" ,python-future)))
|
||||
(native-inputs
|
||||
`(("python-nose" ,python-nose)
|
||||
("python-numpy" ,python-numpy)))
|
||||
(home-page "https://uncertainties-python-package.readthedocs.io/")
|
||||
(synopsis "Calculations with uncertainties")
|
||||
(description
|
||||
"The uncertainties package transparently handles calculations with
|
||||
numbers with uncertainties. It can also yield the derivatives of any
|
||||
expression.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-boto
|
||||
(package
|
||||
(name "python-boto")
|
||||
|
|
Loading…
Reference in a new issue