Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / timezonefinder / default.nix
blob79675ebc629ae0d6d03aaf5d2075dcf68add10e5
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , cffi
5 , h3
6 , numba
7 , numpy
8 , poetry-core
9 , pytestCheckHook
10 , pythonOlder
11 , setuptools
14 buildPythonPackage rec {
15   pname = "timezonefinder";
16   version = "6.5.0";
17   pyproject = true;
19   disabled = pythonOlder "3.9";
21   src = fetchFromGitHub {
22     owner = "jannikmi";
23     repo = "timezonefinder";
24     rev = "refs/tags/${version}";
25     hash = "sha256-V5g1zTdXWeJba71/eUGQbF9XOhMQuzivtGkqGD4OHMY=";
26   };
28   nativeBuildInputs = [
29     cffi
30     poetry-core
31     setuptools
32   ];
34   propagatedBuildInputs = [
35     cffi
36     h3
37     numpy
38   ];
40   nativeCheckInputs = [
41     numba
42     pytestCheckHook
43   ];
45   pythonImportsCheck = [
46     "timezonefinder"
47   ];
49   preCheck = ''
50     # Some tests need the CLI on the PATH
51     export PATH=$out/bin:$PATH
52   '';
54   meta = with lib; {
55     changelog = "https://github.com/jannikmi/timezonefinder/blob/${version}/CHANGELOG.rst";
56     description = "Module for finding the timezone of any point on earth (coordinates) offline";
57     mainProgram = "timezonefinder";
58     homepage = "https://github.com/MrMinimal64/timezonefinder";
59     license = licenses.mit;
60     maintainers = with maintainers; [ fab ];
61   };