Merge pull request #106151 from r-ryantm/auto-update/python3.7-netCDF4

This commit is contained in:
Sandro 2020-12-07 17:52:59 +01:00 committed by GitHub
commit 6668ad90df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View file

@ -1,6 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, fetchpatch
, h5py , h5py
, pytestCheckHook , pytestCheckHook
, netcdf4 , netcdf4
@ -16,6 +17,13 @@ buildPythonPackage rec {
sha256 = "09bbnpsvwksb07wijn7flyyza56h5b2g2cw0hb3slmwxz6cgcjmr"; sha256 = "09bbnpsvwksb07wijn7flyyza56h5b2g2cw0hb3slmwxz6cgcjmr";
}; };
patches = [
(fetchpatch{
url = "https://patch-diff.githubusercontent.com/raw/h5netcdf/h5netcdf/pull/82.patch";
sha256 = "0x9bq9jl4kvw152adkpcyqslhpi7miv80hrnpl2w2y798mmbs0s4";
})
];
propagatedBuildInputs = [ propagatedBuildInputs = [
h5py h5py
]; ];

View file

@ -3,13 +3,13 @@
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "netCDF4"; pname = "netCDF4";
version = "1.5.4"; version = "1.5.5";
disabled = isPyPy; disabled = isPyPy;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "941de6f3623b6474ecb4d043be5990690f7af4cf0d593b31be912627fe5aad03"; sha256 = "910b0c9d1ca7bef9c5796c45e2f5f30b91df70997ac655c51a58073eff2634f9";
}; };
checkInputs = [ pytest ]; checkInputs = [ pytest ];