45 lines
772 B
Nix
45 lines
772 B
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
cython,
|
||
|
fetchPypi,
|
||
|
numpy,
|
||
|
pytestCheckHook,
|
||
|
pythonOlder,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "cftime";
|
||
|
version = "1.6.4";
|
||
|
format = "setuptools";
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
hash = "sha256-4yVAYZN1in7WcwjetS5yd4KhnjhOGDN45/9iCYvgrtw=";
|
||
|
};
|
||
|
|
||
|
postPatch = ''
|
||
|
sed -i "/--cov/d" setup.cfg
|
||
|
'';
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cython
|
||
|
numpy
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = [ numpy ];
|
||
|
|
||
|
nativeCheckInputs = [ pytestCheckHook ];
|
||
|
|
||
|
pythonImportsCheck = [ "cftime" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Time-handling functionality from netcdf4-python";
|
||
|
homepage = "https://github.com/Unidata/cftime";
|
||
|
license = licenses.mit;
|
||
|
maintainers = [ ];
|
||
|
};
|
||
|
}
|