mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
python.pkgs.netcdf4: fix build
This commit is contained in:
parent
25e5b37c23
commit
cb5bf262cd
@ -1,23 +1,25 @@
|
||||
{ stdenv, buildPythonPackage, fetchurl, isPyPy
|
||||
, numpy, zlib, netcdf, hdf5, curl, libjpeg, cython
|
||||
{ stdenv, buildPythonPackage, fetchPypi, isPyPy, pytest
|
||||
, numpy, zlib, netcdf, hdf5, curl, libjpeg, cython, cftime
|
||||
}:
|
||||
buildPythonPackage rec {
|
||||
pname = "netCDF4";
|
||||
name = "${pname}-${version}";
|
||||
version = "1.4.0";
|
||||
|
||||
disabled = isPyPy;
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/n/netCDF4/${name}.tar.gz";
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "a6c0b46f410f101c09d60b8cc460aafec06732f0130c6cb2730717bcc605b388";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
buildInputs = [
|
||||
cython
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
cftime
|
||||
numpy
|
||||
zlib
|
||||
netcdf
|
||||
@ -26,6 +28,13 @@ buildPythonPackage rec {
|
||||
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}";
|
||||
|
Loading…
Reference in New Issue
Block a user