summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/feather-format/default.nix
blob: 8faa405a746a083f36835254a0b6769cbf052591 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
  pyarrow,
}:

buildPythonPackage (finalAttrs: {
  pname = "feather-format";
  version = "0.4.1";
  pyproject = true;

  src = fetchPypi {
    inherit (finalAttrs) 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 ];
  };
})