about summary refs log tree commit diff
path: root/pkgs/development/python-modules/flammkuchen/default.nix
blob: 61758ae482b86aa4875d05ec49d5a1b11f7b910d (plain) (blame)
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
33
34
35
36
37
38
39
40
41
42
43
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, pandas
, pytestCheckHook
, scipy
, setuptools
, tables
}:

buildPythonPackage rec {
  pname = "flammkuchen";
  version = "1.0.3";
  format = "pyproject";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-z68HBsU9J6oe8+YL4OOQiMYQRs3TZUDM+e2ssqo6BFI=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    numpy
    scipy
    tables
  ];

  nativeCheckInputs = [
    pandas
    pytestCheckHook
  ];

  meta = {
    homepage = "https://github.com/portugueslab/flammkuchen";
    description = "Flexible HDF5 saving/loading library forked from deepdish (University of Chicago) and maintained by the Portugues lab";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ tbenst ];
  };
}