1{ lib, buildPythonPackage, fetchPypi
2, requests }:
3
4buildPythonPackage rec {
5 pname = "WazeRouteCalculator";
6 version = "0.12";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "889fe753a530b258bd23def65616666d32c48d93ad8ed211dadf2ed9afcec65b";
11 };
12
13 propagatedBuildInputs = [ requests ];
14
15 # there are no tests
16 doCheck = false;
17
18 meta = with lib; {
19 description = "Calculate actual route time and distance with Waze API";
20 homepage = "https://github.com/kovacsbalu/WazeRouteCalculator";
21 license = licenses.gpl3;
22 maintainers = with maintainers; [ peterhoeg ];
23 };
24}