linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / cftime / default.nix
blob1f52c04e9a97c2756b151f7463e05dfa332deab8
1 { buildPythonPackage
2 , fetchPypi
3 , pytestCheckHook
4 , coveralls
5 , pytestcov
6 , cython
7 , numpy
8 , python
9 }:
11 buildPythonPackage rec {
12   pname = "cftime";
13   version = "1.4.1";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "7c55540bc164746c3c4f86a07c9c7b9ed4dfb0b0d988348ec63cec065c58766d";
18   };
20   checkInputs = [
21     pytestCheckHook
22     coveralls
23     pytestcov
24   ];
26   nativeBuildInputs = [
27     cython
28     numpy
29   ];
31   propagatedBuildInputs = [
32     numpy
33   ];
35   # ERROR test/test_cftime.py - ModuleNotFoundError: No module named 'cftime._cft...
36   doCheck = false;
38   meta = {
39     description = "Time-handling functionality from netcdf4-python";
40   };