Merge pull request #211643 from dotlambda/timezonefinder-fix

python310Packages.timezonefinder: update dependencies
This commit is contained in:
Fabian Affolter
2023-01-20 08:56:48 +01:00
committed by GitHub
@@ -1,12 +1,14 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, cffi
, h3
, numba
, numpy
, poetry-core
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
@@ -24,10 +26,13 @@ buildPythonPackage rec {
};
nativeBuildInputs = [
cffi
poetry-core
setuptools
];
propagatedBuildInputs = [
cffi
h3
numpy
];
@@ -52,6 +57,7 @@ buildPythonPackage rec {
'';
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;