ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / paramz / default.nix
blob99065aa19944f25d2bfb4579304460f62e23f5cc
1 { lib, buildPythonPackage, fetchPypi, numpy, scipy, six, decorator, nose }:
3 buildPythonPackage rec {
4   pname = "paramz";
5   version = "0.9.5";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0917211c0f083f344e7f1bc997e0d713dbc147b6380bc19f606119394f820b9a";
10   };
12   propagatedBuildInputs = [ numpy scipy six decorator ];
13   checkInputs = [ nose ];
15   # Ran 113 tests in 3.082s
16   checkPhase = ''
17       nosetests -v paramz/tests
18   '';
20   meta = with lib; {
21     description = "Parameterization framework for parameterized model creation and handling";
22     homepage = "https://github.com/sods/paramz";
23     license = licenses.bsd3;
24     maintainers = with maintainers; [ bcdarwin ];
25   };