12 buildPythonPackage rec {
13 pname = "timezonefinder";
17 disabled = pythonOlder "3.8";
19 src = fetchFromGitHub {
23 hash = "sha256-jquaA/+alSRUaa2wXQ6YoDR4EY9OlZCAdcxS5TR0CAU=";
30 propagatedBuildInputs = [
41 substituteInPlace pyproject.toml \
42 --replace 'numpy = "^1.22"' 'numpy = "*"'
45 pythonImportsCheck = [
50 # Some tests need the CLI on the PATH
51 export PATH=$out/bin:$PATH
55 description = "Module for finding the timezone of any point on earth (coordinates) offline";
56 homepage = "https://github.com/MrMinimal64/timezonefinder";
57 license = licenses.mit;
58 maintainers = with maintainers; [ fab ];