1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 pyarrow,
7}:
8
9buildPythonPackage rec {
10 pname = "feather-format";
11 version = "0.4.1";
12 pyproject = true;
13
14 src = fetchPypi {
15 inherit pname version;
16
17 hash = "sha256-RfZ+N0XTlNTxYMptY2u/1Pi2jQEZncFkm25IfT6HiQM=";
18 };
19
20 build-system = [ setuptools ];
21 dependencies = [ pyarrow ];
22
23 pythonImportsCheck = [ "feather" ];
24 doCheck = false; # no tests
25
26 meta = {
27 description = "Simple wrapper library to the Apache Arrow-based Feather File Format";
28 homepage = "https://github.com/wesm/feather";
29 license = lib.licenses.asl20;
30 maintainers = with lib.maintainers; [ sigmanificient ];
31 };
32}