nixpkgs/pkgs/development/python-modules/timezonefinder/default.nix

34 lines
657 B
Nix
Raw Normal View History

{ buildPythonPackage
, lib
, fetchPypi
, isPy27
, numba
, numpy
, pytestCheckHook
, pytestcov
}:
buildPythonPackage rec {
pname = "timezonefinder";
2020-08-16 18:31:17 +01:00
version = "4.4.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:17 +01:00
sha256 = "c84e0f4b501419349e67972d25c535d9b5fd6c100c319747049b67812a4c6b97";
};
propagatedBuildInputs = [
numpy
];
checkInputs = [ numba pytestCheckHook pytestcov ];
meta = with lib; {
description = "fast python package for finding the timezone of any point on earth (coordinates) offline";
homepage = "https://github.com/MrMinimal64/timezonefinder";
license = licenses.mit;
};
}