depot/third_party/nixpkgs/pkgs/development/python-modules/timezonefinder/default.nix
Default email 9405df4a82 Project import generated by Copybara.
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
2021-04-26 15:14:03 -04:00

33 lines
657 B
Nix

{ buildPythonPackage
, lib
, fetchPypi
, isPy27
, numba
, numpy
, pytestCheckHook
, pytestcov
}:
buildPythonPackage rec {
pname = "timezonefinder";
version = "5.2.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "a374570295a8dbd923630ce85f754e52578e288cb0a9cf575834415e84758352";
};
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;
};
}