14 buildPythonPackage rec {
15 pname = "here-routing";
18 disabled = pythonOlder "3.10";
22 src = fetchFromGitHub {
24 repo = "here_routing";
26 hash = "sha256-wdjPbM9J+2q3NisdlOHIddSWHHIfwQY/83v6IBAXSq0=";
30 sed -i "/^addopts/d" pyproject.toml
37 propagatedBuildInputs = [
49 pythonImportsCheck = [ "here_routing" ];
52 changelog = "https://github.com/eifinger/here_routing/blob/${src.rev}/CHANGELOG.md";
53 description = "Asynchronous Python client for the HERE Routing V8 API";
54 homepage = "https://github.com/eifinger/here_routing";
55 license = lib.licenses.mit;
56 maintainers = with lib.maintainers; [ dotlambda ];