pythonPackages.netcdf4: add missing cython dependency (#26570)

This commit is contained in:
Lancelot SIX 2017-06-14 17:50:48 +02:00 committed by Joachim Schiele
parent 13a8fa8801
commit 3a9c7c6c18
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{ stdenv, buildPythonPackage, fetchurl, isPyPy
, numpy, zlib, netcdf, hdf5, curl, libjpeg
, numpy, zlib, netcdf, hdf5, curl, libjpeg, cython
}:
buildPythonPackage rec {
pname = "netCDF4";
@ -13,6 +13,10 @@ buildPythonPackage rec {
sha256 = "31eb4eae5fd3b2bd8f828721142ddcefdbf10287281bf6f636764dd7957f8450";
};
buildInputs = [
cython
];
propagatedBuildInputs = [
numpy
zlib

View File

@ -8066,7 +8066,7 @@ in {
};
};
netcdf4 = callPackage ../development/python-modules/netcdf4.nix { };
netcdf4 = callPackage ../development/python-modules/netcdf4 { };
Nikola = callPackage ../development/python-modules/Nikola { };