Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / timezonefinder / default.nix
blob0ba9c4c53d8f66a43b5e3d3840cdc18b65b870b4
1 { buildPythonPackage
2 , lib
3 , fetchPypi
4 , isPy27
5 , numba
6 , numpy
7 , pytestCheckHook
8 , pytestcov
9 }:
11 buildPythonPackage rec {
12   pname = "timezonefinder";
13   version = "4.5.0";
15   disabled = isPy27;
17   src = fetchPypi {
18     inherit pname version;
19     sha256 = "99b0cea5abf304e8738ecf5cceae0c0e5182534843f19638a26a220fa212fbad";
20   };
22   propagatedBuildInputs = [
23     numpy
24   ];
26   checkInputs = [ numba pytestCheckHook pytestcov ];
28   meta = with lib; {
29     description = "fast python package for finding the timezone of any point on earth (coordinates) offline";
30     homepage = "https://github.com/MrMinimal64/timezonefinder";
31     license = licenses.mit;
32   };