nixpkgs/pkgs/development/python-modules/netcdf4/default.nix

51 lines
999 B
Nix
Raw Normal View History

{ stdenv, lib, buildPythonPackage, fetchPypi, isPyPy, pytest
2018-06-22 11:30:59 +01:00
, numpy, zlib, netcdf, hdf5, curl, libjpeg, cython, cftime
2017-02-01 13:04:57 +00:00
}:
buildPythonPackage rec {
pname = "netCDF4";
2020-07-31 09:56:42 +01:00
version = "1.5.4";
2017-02-01 13:04:57 +00:00
disabled = isPyPy;
2018-06-22 11:30:59 +01:00
src = fetchPypi {
inherit pname version;
2020-07-31 09:56:42 +01:00
sha256 = "941de6f3623b6474ecb4d043be5990690f7af4cf0d593b31be912627fe5aad03";
2017-02-01 13:04:57 +00:00
};
2018-06-22 11:30:59 +01:00
checkInputs = [ pytest ];
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 = lib.getDev hdf5;
2019-09-09 00:38:31 +01:00
NETCDF4_DIR=netcdf;
CURL_DIR=curl.dev;
JPEG_DIR=libjpeg.dev;
2017-02-01 13:04:57 +00:00
meta = with stdenv.lib; {
description = "Interface to netCDF library (versions 3 and 4)";
homepage = "https://pypi.python.org/pypi/netCDF4";
2017-02-01 13:04:57 +00:00
license = licenses.free; # Mix of license (all MIT* like)
};
}