Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 42 lines 666 B view raw
1{ buildPythonPackage 2, fetchPypi 3, pytestCheckHook 4, coveralls 5, pytestcov 6, cython 7, numpy 8, python 9}: 10 11buildPythonPackage rec { 12 pname = "cftime"; 13 version = "1.4.1"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "7c55540bc164746c3c4f86a07c9c7b9ed4dfb0b0d988348ec63cec065c58766d"; 18 }; 19 20 checkInputs = [ 21 pytestCheckHook 22 coveralls 23 pytestcov 24 ]; 25 26 nativeBuildInputs = [ 27 cython 28 numpy 29 ]; 30 31 propagatedBuildInputs = [ 32 numpy 33 ]; 34 35 # ERROR test/test_cftime.py - ModuleNotFoundError: No module named 'cftime._cft... 36 doCheck = false; 37 38 meta = { 39 description = "Time-handling functionality from netcdf4-python"; 40 }; 41 42}