diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-27 18:08:28 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-27 19:59:52 +0000 |
| commit | 835e1e00f54e37d1aea56893dcd13bf231ada6b7 (patch) | |
| tree | 38ac0f0de227be495e2baab5b42e006a609ebc29 /gnu/packages/serialization.scm | |
| parent | ed479712ef7bc5c4aed2defcd0cebe1299777197 (diff) | |
gnu: python-feather-format: Switch to pyproject.
* gnu/packages/serialization.scm (python-feather-format):
[build-system]: Switch to pyproject-build-system.
[arguments]: <tests?>: No tests provided.
[native-inputs]: Add python-setuptools.
Change-Id: Icfa8b70773f4d547a019f5b4cded7c4ef3eae2f7
Diffstat (limited to 'gnu/packages/serialization.scm')
| -rw-r--r-- | gnu/packages/serialization.scm | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm index 0ab4a5d3f1b..a48ec4ad4e5 100644 --- a/gnu/packages/serialization.scm +++ b/gnu/packages/serialization.scm @@ -1016,15 +1016,19 @@ Python.") (name "python-feather-format") (version "0.4.1") (source - (origin - (method url-fetch) - (uri (pypi-uri "feather-format" version)) - (sha256 - (base32 - "00w9hwz7sj3fkdjc378r066vdy6lpxmn6vfac3qx956k8lvpxxj5")))) - (build-system python-build-system) + (origin + (method url-fetch) + (uri (pypi-uri "feather-format" version)) + (sha256 + (base32 "00w9hwz7sj3fkdjc378r066vdy6lpxmn6vfac3qx956k8lvpxxj5")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ;no tests in PyPI or Git + (native-inputs + (list python-setuptools)) (propagated-inputs - (list python-pandas python-pyarrow)) + (list python-pandas + python-pyarrow)) (home-page "https://github.com/wesm/feather") (synopsis "Python wrapper to the Feather file format") (description "This package provides a Python wrapper library to the |
