3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/netcdf4/default.nix
R. RyanTM be0bcf1a28 python37Packages.netcdf4: 1.4.2 -> 1.5.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-netcdf4/versions

(cherry picked from commit 171bf623ce)
2019-04-07 13:53:45 +02:00

51 lines
987 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, isPyPy, pytest
, numpy, zlib, netcdf, hdf5, curl, libjpeg, cython, cftime
}:
buildPythonPackage rec {
pname = "netCDF4";
version = "1.5.0";
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
sha256 = "1nf0cjja94zsfbp8dw83b36c4cmz9v4b0h51yh8g3q2z9w8d2n62";
};
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="${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)
};
}