From 47ad589f41c75e63a08937d9149b35a96eed77c6 Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Sun, 9 Aug 2020 13:44:12 -0300 Subject: gnu: Add python-bottleneck. * gnu/packages/python-science.scm (python-bottleneck): New variable. Signed-off-by: Mathieu Othacehe --- gnu/packages/python-science.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 88843c1fb2..7675152d79 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -389,6 +389,36 @@ doing practical, real world data analysis in Python.") "if 'NULL byte' in msg or 'line contains NUL' in msg:")) #t))))))) +(define-public python-bottleneck + (package + (name "python-bottleneck") + (version "1.3.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "Bottleneck" version)) + (sha256 + (base32 "0wz5320jx3n4q2nsvwvc7cpi66b46qbals9v53m955rmcq5ry5r0")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda _ + (invoke "python" "setup.py" "pytest")))))) + (native-inputs + `(("python-hypothesis" ,python-hypothesis) + ("python-pytest" ,python-pytest) + ("python-pytest-runner" ,python-pytest-runner))) + (propagated-inputs + `(("python-numpy" ,python-numpy))) + (home-page "https://github.com/pydata/bottleneck") + (synopsis "Fast NumPy array functions written in C") + (description + "Bottleneck is a collection of fast, NaN-aware NumPy array functions +written in C.") + (license license:bsd-2))) + (define-public python-xarray (package (name "python-xarray") -- cgit v1.2.3