anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / cftime / default.nix
blobef33cb69e1ce3bc0ff3577da00311163e54339b3
2   lib,
3   buildPythonPackage,
4   cython,
5   fetchPypi,
6   numpy,
7   pytestCheckHook,
8   pythonOlder,
9 }:
11 buildPythonPackage rec {
12   pname = "cftime";
13   version = "1.6.4.post1";
14   format = "setuptools";
16   disabled = pythonOlder "3.7";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-UKx2zJ8Qq3vUbkSnHFGmknBRtJm0QH308pqxPXQblC8=";
21   };
23   postPatch = ''
24     sed -i "/--cov/d" setup.cfg
25   '';
27   nativeBuildInputs = [
28     cython
29     numpy
30   ];
32   propagatedBuildInputs = [ numpy ];
34   nativeCheckInputs = [ pytestCheckHook ];
36   pythonImportsCheck = [ "cftime" ];
38   meta = with lib; {
39     description = "Time-handling functionality from netcdf4-python";
40     homepage = "https://github.com/Unidata/cftime";
41     license = licenses.mit;
42     maintainers = [ ];
43   };