guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 835e1e00f54e37d1aea56893dcd13bf231ada6b7
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Dec 27 18:08:28 2025 +0000
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
---
gnu/packages/serialization.scm | 20 ++++++++++++--------
1 file changed, 12 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index 0ab4a5d3f1..a48ec4ad4e 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