diff options
author | Vinicius Monego <monego@posteo.net> | 2025-06-22 12:01:48 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2025-06-22 12:40:59 -0300 |
commit | 4a380592589fbb51d5d601e42cb9ff67b153ed0f (patch) | |
tree | cc562a2bed90833be469149e7dab65f862f92d7a /gnu/packages/python-science.scm | |
parent | 5b983cd239a7e7ca441fc50cabdda786755e6583 (diff) |
gnu: python-pandas-flavor: Update to 0.7.0.
* gnu/packages/python-science.scm (python-pandas-flavor): Update to
0.7.0.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-pytest.
Change-Id: Ie582c778d84b342eab41f8bc88f2c4bb410bbbb6
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r-- | gnu/packages/python-science.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 51117e9dd8..65bb3f2d2c 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -3329,15 +3329,17 @@ two-dimensional renderings such as scatter plots and histograms. (define-public python-pandas-flavor (package (name "python-pandas-flavor") - (version "0.5.0") + (version "0.7.0") (source (origin (method url-fetch) (uri (pypi-uri "pandas_flavor" version)) (sha256 (base32 - "0473lkbdnsag3w5x65sxwjlyq0i7z938ssxqwn2cpcml282vksx1")))) - (build-system python-build-system) + "0zmgxnrxlvjgsr5f6yiwdn093kibb48zd16jkgy7l082d7wzjyv1")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest)) (propagated-inputs (list python-lazy-loader python-packaging python-pandas python-xarray)) (home-page "https://github.com/pyjanitor-devs/pandas_flavor") |