depot/third_party/nixpkgs/pkgs/development/python-modules/netcdf4/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

50 lines
999 B
Nix

{ stdenv, lib, buildPythonPackage, fetchPypi, isPyPy, pytest
, numpy, zlib, netcdf, hdf5, curl, libjpeg, cython, cftime
}:
buildPythonPackage rec {
pname = "netCDF4";
version = "1.5.4";
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
sha256 = "941de6f3623b6474ecb4d043be5990690f7af4cf0d593b31be912627fe5aad03";
};
checkInputs = [ pytest ];
buildInputs = [
cython
];
propagatedBuildInputs = [
cftime
numpy
zlib
netcdf
hdf5
curl
libjpeg
];
checkPhase = ''
py.test test/tst_*.py
'';
# Tests need fixing.
doCheck = false;
# Variables used to configure the build process
USE_NCCONFIG="0";
HDF5_DIR = lib.getDev 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)
};
}