python3packages.flammkuchen: init at 0.9.1

This commit is contained in:
tbenst 2019-10-31 13:53:32 -07:00 committed by Jon
parent f82997f899
commit a7166ae903
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ lib, pkgs, buildPythonPackage, fetchPypi, isPy3k
, numpy
, scipy
, tables
, pandas
, nose
}:
buildPythonPackage rec {
pname = "flammkuchen";
version = "0.9.1";
src = fetchPypi {
inherit pname version;
sha256 = "e9aab9b229ace70d879b85618a9ce0e88dd6ce35d4dbcdfd60c6b61c33a1b4fb";
};
checkInputs = [
nose
];
propagatedBuildInputs = [
numpy
scipy
tables
pandas
];
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 ];
};
}

View File

@ -2476,6 +2476,8 @@ in {
filetype = callPackage ../development/python-modules/filetype { };
flammkuchen = callPackage ../development/python-modules/flammkuchen { };
flexmock = callPackage ../development/python-modules/flexmock { };
flit = callPackage ../development/python-modules/flit { };