nixpkgs/pkgs/development/python-modules/h5netcdf/default.nix

39 lines
592 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, h5py
, pytestCheckHook
, netcdf4
, pythonOlder
}:
buildPythonPackage rec {
pname = "h5netcdf";
version = "0.8.1";
src = fetchPypi {
inherit pname version;
sha256 = "09bbnpsvwksb07wijn7flyyza56h5b2g2cw0hb3slmwxz6cgcjmr";
};
propagatedBuildInputs = [
h5py
];
checkInputs = [
pytestCheckHook
netcdf4
];
disabled = pythonOlder "3.6";
dontUseSetuptoolsCheck = true;
meta = {
description = "netCDF4 via h5py";
homepage = "https://github.com/shoyer/h5netcdf";
license = lib.licenses.bsd3;
};
2020-08-25 04:07:09 +02:00
}