pythonPackages.netcdf4: 1.1.8 -> 1.2.1

This commit is contained in:
Lancelot SIX 2015-12-11 14:30:21 +00:00
parent fc6d1471ce
commit 392fcb14cf

View File

@ -5266,13 +5266,13 @@ in modules // {
netcdf4 = buildPythonPackage rec { netcdf4 = buildPythonPackage rec {
name = "netCDF4-${version}"; name = "netCDF4-${version}";
version = "1.1.8"; version = "1.2.1";
disabled = isPyPy; disabled = isPyPy;
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/n/netCDF4/${name}.tar.gz"; url = "https://pypi.python.org/packages/source/n/netCDF4/${name}.tar.gz";
sha256 = "0y6s8g82rbij0brh9hz3aapyyq6apj8fpmhhlyibz1354as7rjq1"; sha256 = "0wzg73zyjjhns4209vrcvh71gs392d16ynz76x3pl1xg2by723iy";
}; };
propagatedBuildInputs = with self ; [ propagatedBuildInputs = with self ; [
@ -5284,13 +5284,12 @@ in modules // {
pkgs.libjpeg pkgs.libjpeg
]; ];
patchPhase = '' # Variables used to configure the build process
export USE_NCCONFIG=0 USE_NCCONFIG="0";
export HDF5_DIR="${pkgs.hdf5}" HDF5_DIR="${pkgs.hdf5}";
export NETCDF4_DIR="${pkgs.netcdf}" NETCDF4_DIR="${pkgs.netcdf}";
export CURL_DIR="${pkgs.curl}" CURL_DIR="${pkgs.curl}";
export JPEG_DIR="${pkgs.libjpeg}" JPEG_DIR="${pkgs.libjpeg}";
'';
meta = { meta = {
description = "interface to netCDF library (versions 3 and 4)"; description = "interface to netCDF library (versions 3 and 4)";