nixpkgs/pkgs/development/python-modules/cftime/default.nix
2022-07-01 13:03:53 +00:00

50 lines
795 B
Nix

{ lib
, buildPythonPackage
, cython
, fetchPypi
, numpy
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "cftime";
version = "1.6.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-URIV9F7XzHnq2EAg6I4fxHa4q6cbR9L83vjmUkJAaSc=";
};
nativeBuildInputs = [
cython
numpy
];
propagatedBuildInputs = [
numpy
];
checkInputs = [
pytestCheckHook
];
postPatch = ''
sed -i "/--cov/d" setup.cfg
'';
pythonImportsCheck = [
"cftime"
];
meta = with lib; {
description = "Time-handling functionality from netcdf4-python";
homepage = "https://github.com/Unidata/cftime";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}