nixpkgs/pkgs/development/python-modules/cftime/default.nix
Martin Weinelt e5c8db23ce python3Packages.cftime: 1.6.4.post1 -> 1.6.5
This commit was automatically generated using update-python-libraries.
2026-02-01 16:42:24 +01:00

41 lines
707 B
Nix

{
lib,
buildPythonPackage,
cython,
fetchPypi,
numpy,
pytest-cov-stub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "cftime";
version = "1.6.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-giX+1rm0P7h2g+urUhMEUPwXMAERUNMJIJapDlTR6B4=";
};
nativeBuildInputs = [
cython
numpy
];
propagatedBuildInputs = [ numpy ];
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "cftime" ];
meta = {
description = "Time-handling functionality from netcdf4-python";
homepage = "https://github.com/Unidata/cftime";
license = lib.licenses.mit;
maintainers = [ ];
};
}