ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / flammkuchen / default.nix
blobeabfd1ad6fabf8f6b46dab22405c4ad1e51d2b35
1 { lib, buildPythonPackage, fetchPypi, isPy27
2 , numpy
3 , scipy
4 , tables
5 , pandas
6 , nose
7 , configparser
8 }:
10 buildPythonPackage rec {
11   pname = "flammkuchen";
12   version = "1.0.2";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "sha256-KtMGQftoYVNNMtfYeYiaQyMLAySpf9YXLMxj+e/CV5I=";
17   };
19   checkInputs = [
20     nose
21   ];
23   propagatedBuildInputs = [
24     numpy
25     scipy
26     tables
27     pandas
28   ] ++ lib.optionals isPy27 [ configparser ];
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   };