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
commit e6748001a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;