1{ lib, pkgs, buildPythonPackage, fetchPypi, isPy27
2, numpy
3, scipy
4, tables
5, pandas
6, nose
7, configparser
8}:
9
10buildPythonPackage rec {
11 pname = "flammkuchen";
12 version = "0.9.1";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "e9aab9b229ace70d879b85618a9ce0e88dd6ce35d4dbcdfd60c6b61c33a1b4fb";
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}