1{ lib, buildPythonPackage, fetchPypi, isPy27
2, numpy
3, scipy
4, tables
5, pandas
6, nose
7, configparser
8}:
9
10buildPythonPackage rec {
11 pname = "flammkuchen";
12 version = "1.0.2";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "sha256-KtMGQftoYVNNMtfYeYiaQyMLAySpf9YXLMxj+e/CV5I=";
17 };
18
19 checkInputs = [
20 nose
21 ];
22
23 propagatedBuildInputs = [
24 numpy
25 scipy
26 tables
27 pandas
28 ] ++ lib.optionals isPy27 [ configparser ];
29
30 meta = {
31 homepage = "https://github.com/portugueslab/flammkuchen";
32 description = "Flexible HDF5 saving/loading library forked from deepdish (University of Chicago) and maintained by the Portugues lab";
33 license = lib.licenses.bsd3;
34 maintainers = with lib.maintainers; [ tbenst ];
35 };
36}