1 { lib, buildPythonPackage, fetchPypi, isPy27
10 buildPythonPackage rec {
11 pname = "flammkuchen";
15 inherit pname version;
16 sha256 = "sha256-KtMGQftoYVNNMtfYeYiaQyMLAySpf9YXLMxj+e/CV5I=";
23 propagatedBuildInputs = [
28 ] ++ lib.optionals isPy27 [ configparser ];
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 ];