4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
51 lines
994 B
Nix
51 lines
994 B
Nix
{ stdenv, lib, buildPythonPackage, fetchPypi, isPyPy, pytest
|
|
, numpy, zlib, netcdf, hdf5, curl, libjpeg, cython, cftime
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "netCDF4";
|
|
version = "1.5.5.1";
|
|
|
|
disabled = isPyPy;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "d957e55a667d1fc651ddef22fea10ded0f142b7d9dbbf4d08c0012d32f445abd";
|
|
};
|
|
|
|
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 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)
|
|
};
|
|
}
|