diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-27 19:40:55 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-27 21:22:31 +0000 |
commit | ab46e9fb53e673a16bb29ff986107cd5db29e50a (patch) | |
tree | 2aa7cb9adb01f65a7272b4467ac4b6baf6092444 /gnu/packages/python-science.scm | |
parent | 13b6dc1467d3c0e8d7707f0fe8eff01198783c70 (diff) |
gnu: python-pods: Update to 0.1.17.
* gnu/packages/python-science.scm (python-pods): Update to 0.1.17.
[native-inputs]: Remove python-setuptools and python-wheel; add python-poetry-core.
Change-Id: I68db152ec47c54ffb92528863e9faedec11440ac
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r-- | gnu/packages/python-science.scm | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 62001bc430..9436dd61c5 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -3426,18 +3426,24 @@ machine learning algorithms based on GPs.") (define-public python-pods (package (name "python-pods") - (version "0.1.14") + (version "0.1.17") (source (origin (method url-fetch) (uri (pypi-uri "pods" version)) (sha256 - (base32 "157xxs12qbnz1g6agy0a4dqhsa4msbqryrxpg5w3r3pb8gxdl4dh")))) + (base32 "1z57jdwml2jzr2dq20p7pzx3ayhajgfd2d0xqjvgzx576hp2z1ac")))) (build-system pyproject-build-system) - (arguments (list #:tests? #f)) ;no test suite - (propagated-inputs (list python-pandas python-pyyaml python-scipy - python-tables)) - (native-inputs (list python-setuptools python-wheel)) + ;; Tests depend on Nose framework and try to download test data from + ;; <https://github.com/SheffieldML/GPmat>. + (arguments (list #:tests? #f)) + (native-inputs + (list python-poetry-core)) + (propagated-inputs + (list python-pandas + python-pyyaml + python-scipy + python-tables)) (home-page "https://github.com/lawrennd/ods") (synopsis "Python software for Open Data Science") (description "This package provides utilities and tools for open data |