python313Packages.timezonefinder: 8.0.0 -> 8.1.0 (#464837)

This commit is contained in:
Fabian Affolter
2025-11-25 09:21:49 +00:00
committed by GitHub
@@ -1,33 +1,31 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
cffi,
fetchFromGitHub,
flatbuffers,
h3,
numba,
numpy,
poetry-core,
pydantic,
pytestCheckHook,
pytz,
setuptools,
}:
buildPythonPackage rec {
pname = "timezonefinder";
version = "8.0.0";
version = "8.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jannikmi";
repo = "timezonefinder";
tag = version;
hash = "sha256-AvuNsIpJBZymlJe4HLPEmHfxN1jhqPmrEgRPb3W+B3E=";
hash = "sha256-jIsS8RcbMNhj5Z/AYbNyVsbQOozbk75tXSLRqhez9Ug=";
};
build-system = [
poetry-core
setuptools
];
build-system = [ setuptools ];
nativeBuildInputs = [ cffi ];
@@ -38,10 +36,16 @@ buildPythonPackage rec {
numpy
];
optional-dependencies = {
numba = [ numba ];
pytz = [ pytz ];
};
nativeCheckInputs = [
numba
pydantic
pytestCheckHook
];
]
++ lib.flatten (builtins.attrValues optional-dependencies);
pythonImportsCheck = [ "timezonefinder" ];