13 buildPythonPackage rec {
18 disabled = pythonOlder "3.11";
20 src = fetchFromGitHub {
23 rev = "refs/tags/v${version}";
24 hash = "sha256-XE+VdxUjq8KBSIU6rUlBweKEkZD3gqJuy9J4u9JVy7Q=";
28 substituteInPlace pyproject.toml \
29 --replace-fail "--cov --cov-report term-missing --cov=src/pywaze " ""
32 build-system = [ hatchling ];
34 dependencies = [ httpx ];
42 pythonImportsCheck = [ "pywaze" ];
45 description = "Module for calculating WAZE routes and travel times";
46 homepage = "https://github.com/eifinger/pywaze";
47 changelog = "https://github.com/eifinger/pywaze/releases/tag/v${version}";
48 license = licenses.mit;
49 maintainers = with maintainers; [ fab ];