Merge pull request #180671 from onny/h5netcdf
python310Packages.h5netcdf: 0.8.1 -> 1.0.1
This commit is contained in:
commit
aae75196ea
1 changed files with 16 additions and 13 deletions
|
@ -6,22 +6,23 @@
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, netcdf4
|
, netcdf4
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
|
, setuptools-scm
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "h5netcdf";
|
pname = "h5netcdf";
|
||||||
version = "0.8.1";
|
version = "1.0.1";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "09bbnpsvwksb07wijn7flyyza56h5b2g2cw0hb3slmwxz6cgcjmr";
|
hash = "sha256-d2cE+s2LgiRtbUBoxQXDibO3C5v5kgzPusfzXNxjTaw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
nativeBuildInputs = [
|
||||||
(fetchpatch{
|
setuptools-scm
|
||||||
url = "https://patch-diff.githubusercontent.com/raw/h5netcdf/h5netcdf/pull/82.patch";
|
|
||||||
sha256 = "0x9bq9jl4kvw152adkpcyqslhpi7miv80hrnpl2w2y798mmbs0s4";
|
|
||||||
})
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -33,14 +34,16 @@ buildPythonPackage rec {
|
||||||
netcdf4
|
netcdf4
|
||||||
];
|
];
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
|
||||||
|
|
||||||
dontUseSetuptoolsCheck = true;
|
dontUseSetuptoolsCheck = true;
|
||||||
|
|
||||||
meta = {
|
pythonImportsCheck = [
|
||||||
|
"h5netcdf"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
description = "netCDF4 via h5py";
|
description = "netCDF4 via h5py";
|
||||||
homepage = "https://github.com/shoyer/h5netcdf";
|
homepage = "https://github.com/shoyer/h5netcdf";
|
||||||
license = lib.licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ ];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue