Merge pull request #22344 from lsix/update_netcdf

Update netcdf (including python binding)
This commit is contained in:
Frederik Rietdijk
2017-02-10 17:22:23 +01:00
committed by GitHub
3 changed files with 39 additions and 35 deletions

View File

@@ -0,0 +1,36 @@
{ stdenv, buildPythonPackage, fetchurl, isPyPy
, numpy, zlib, netcdf, hdf5, curl, libjpeg
}:
buildPythonPackage rec {
name = "netCDF4-${version}";
version = "1.2.7";
disabled = isPyPy;
src = fetchurl {
url = "mirror://pypi/n/netCDF4/${name}.tar.gz";
sha256 = "1fllizmnpw0zkzzm4j9pgamarlzfn3kmv9zrm0w65q1y31h9ni0c";
};
propagatedBuildInputs = [
numpy
zlib
netcdf
hdf5
curl
libjpeg
];
# 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)
};
}