nixpkgs/pkgs/development/python-modules/cftime/default.nix

31 lines
516 B
Nix
Raw Normal View History

{ buildPythonPackage
2018-06-22 10:22:42 +00:00
, fetchPypi
, pytest
, coveralls
, pytestcov
, cython
, numpy
}:
buildPythonPackage rec {
pname = "cftime";
version = "1.0.2.1";
2018-06-22 10:22:42 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "1fxpvy3z0b3ga8ylr54ml7nxsfah2bh5azk43nb565rcka3x909c";
2018-06-22 10:22:42 +00:00
};
checkInputs = [ pytest coveralls pytestcov ];
buildInputs = [ cython ];
propagatedBuildInputs = [ numpy ];
checkPhase = ''
py.test
'';
meta = {
description = "Time-handling functionality from netcdf4-python";
};
}