{ lib , buildPythonPackage , fetchFromGitHub , cffi , h3 , numba , numpy , poetry-core , pytestCheckHook , pythonOlder , setuptools }: buildPythonPackage rec { pname = "timezonefinder"; version = "6.4.1"; pyproject = true; disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "jannikmi"; repo = "timezonefinder"; rev = "refs/tags/${version}"; hash = "sha256-e9Zx236X76GYFuADCw9+5HWs2craeq44gVNclkc4th0="; }; nativeBuildInputs = [ cffi poetry-core setuptools ]; propagatedBuildInputs = [ cffi h3 numpy ]; nativeCheckInputs = [ numba pytestCheckHook ]; pythonImportsCheck = [ "timezonefinder" ]; preCheck = '' # Some tests need the CLI on the PATH export PATH=$out/bin:$PATH ''; meta = with lib; { changelog = "https://github.com/jannikmi/timezonefinder/blob/${version}/CHANGELOG.rst"; description = "Module for finding the timezone of any point on earth (coordinates) offline"; homepage = "https://github.com/MrMinimal64/timezonefinder"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }