Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildPythonPackage 2, lib 3, fetchPypi 4, isPy27 5, numba 6, numpy 7, pytestCheckHook 8, pytestcov 9}: 10 11buildPythonPackage rec { 12 pname = "timezonefinder"; 13 version = "4.4.1"; 14 15 disabled = isPy27; 16 17 src = fetchPypi { 18 inherit pname version; 19 sha256 = "c84e0f4b501419349e67972d25c535d9b5fd6c100c319747049b67812a4c6b97"; 20 }; 21 22 propagatedBuildInputs = [ 23 numpy 24 ]; 25 26 checkInputs = [ numba pytestCheckHook pytestcov ]; 27 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 }; 33}