python312Packages.faether-format: init at 0.4.1

This commit is contained in:
Sigmanificient
2024-07-13 02:51:44 +02:00
parent 4e7b26b9d4
commit 0f7da2878d
2 changed files with 34 additions and 0 deletions
@@ -0,0 +1,32 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pyarrow,
}:
buildPythonPackage rec {
pname = "feather-format";
version = "0.4.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-RfZ+N0XTlNTxYMptY2u/1Pi2jQEZncFkm25IfT6HiQM=";
};
build-system = [ setuptools ];
dependencies = [ pyarrow ];
pythonImportsCheck = [ "feather" ];
doCheck = false; # no tests
meta = {
description = "Simple wrapper library to the Apache Arrow-based Feather File Format";
homepage = "https://github.com/wesm/feather";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ sigmanificient ];
};
}
+2
View File
@@ -4230,6 +4230,8 @@ self: super: with self; {
fe25519 = callPackage ../development/python-modules/fe25519 { };
feather-format = callPackage ../development/python-modules/feather-format { };
feedfinder2 = callPackage ../development/python-modules/feedfinder2 { };
feedgen = callPackage ../development/python-modules/feedgen { };