mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
33 lines
673 B
Nix
33 lines
673 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|