14 buildPythonPackage rec {
15 pname = "timezonefinder";
19 disabled = pythonOlder "3.9";
21 src = fetchFromGitHub {
23 repo = "timezonefinder";
24 rev = "refs/tags/${version}";
25 hash = "sha256-V5g1zTdXWeJba71/eUGQbF9XOhMQuzivtGkqGD4OHMY=";
34 propagatedBuildInputs = [
45 pythonImportsCheck = [
50 # Some tests need the CLI on the PATH
51 export PATH=$out/bin:$PATH
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 ];