summary refs log tree commit diff
path: root/pkgs/development/python-modules/WazeRouteCalculator/default.nix
blob: 6da500413f0e45935dded1b05dd0dacf8a775877 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, buildPythonPackage, fetchPypi
, requests }:

buildPythonPackage rec {
  pname = "WazeRouteCalculator";
  version = "0.12";

  src = fetchPypi {
    inherit pname version;
    sha256 = "889fe753a530b258bd23def65616666d32c48d93ad8ed211dadf2ed9afcec65b";
  };

  propagatedBuildInputs = [ requests ];

  # there are no tests
  doCheck = false;

  meta = with lib; {
    description = "Calculate actual route time and distance with Waze API";
    homepage = "https://github.com/kovacsbalu/WazeRouteCalculator";
    license = licenses.gpl3;
    maintainers = with maintainers; [ peterhoeg ];
  };
}