2018-06-22 11:30:59 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPyPy, pytest
|
|
|
|
, numpy, zlib, netcdf, hdf5, curl, libjpeg, cython, cftime
|
2017-02-01 13:04:57 +00:00
|
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "netCDF4";
|
2018-11-12 20:44:44 +00:00
|
|
|
version = "1.4.2";
|
2017-02-01 13:04:57 +00:00
|
|
|
|
|
|
|
disabled = isPyPy;
|
|
|
|
|
2018-06-22 11:30:59 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-12 20:44:44 +00:00
|
|
|
sha256 = "0c0sklgrmv15ygliin8qq0hp7vanmbi74m6zpi0r1ksr0hssyd5r";
|
2017-02-01 13:04:57 +00:00
|
|
|
};
|
|
|
|
|
2018-06-22 11:30:59 +01:00
|
|
|
checkInputs = [ pytest ];
|
|
|
|
|
2017-06-14 16:50:48 +01:00
|
|
|
buildInputs = [
|
|
|
|
cython
|
|
|
|
];
|
|
|
|
|
2017-02-01 13:04:57 +00:00
|
|
|
propagatedBuildInputs = [
|
2018-06-22 11:30:59 +01:00
|
|
|
cftime
|
2017-02-01 13:04:57 +00:00
|
|
|
numpy
|
|
|
|
zlib
|
|
|
|
netcdf
|
|
|
|
hdf5
|
|
|
|
curl
|
|
|
|
libjpeg
|
|
|
|
];
|
|
|
|
|
2018-06-22 11:30:59 +01:00
|
|
|
checkPhase = ''
|
|
|
|
py.test test/tst_*.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Tests need fixing.
|
|
|
|
doCheck = false;
|
|
|
|
|
2017-02-01 13:04:57 +00:00
|
|
|
# Variables used to configure the build process
|
|
|
|
USE_NCCONFIG="0";
|
|
|
|
HDF5_DIR="${hdf5}";
|
|
|
|
NETCDF4_DIR="${netcdf}";
|
|
|
|
CURL_DIR="${curl.dev}";
|
|
|
|
JPEG_DIR="${libjpeg.dev}";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Interface to netCDF library (versions 3 and 4)";
|
|
|
|
homepage = https://pypi.python.org/pypi/netCDF4;
|
|
|
|
license = licenses.free; # Mix of license (all MIT* like)
|
|
|
|
};
|
|
|
|
}
|