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 { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, cffi
, h3 , h3
, numba , numba
, numpy , numpy
, poetry-core , poetry-core
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -24,10 +26,13 @@ buildPythonPackage rec {
}; };
nativeBuildInputs = [ nativeBuildInputs = [
cffi
poetry-core poetry-core
setuptools
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [
cffi
h3 h3
numpy numpy
]; ];
@ -52,6 +57,7 @@ buildPythonPackage rec {
''; '';
meta = with lib; { 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"; description = "Module for finding the timezone of any point on earth (coordinates) offline";
homepage = "https://github.com/MrMinimal64/timezonefinder"; homepage = "https://github.com/MrMinimal64/timezonefinder";
license = licenses.mit; license = licenses.mit;