biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / wazeroutecalculator / default.nix
blob3812a83ffbfc13ae6ce1ae24d1f3c7f9a3b1b750
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   requests,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "wazeroutecalculator";
11   version = "0.15";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     pname = "WazeRouteCalculator";
18     inherit version;
19     hash = "sha256-DB5oWthWNwamFG3kNxA/kmUBOVogoSg5LI2KrI39s4M=";
20   };
22   propagatedBuildInputs = [ requests ];
24   # there are no tests
25   doCheck = false;
27   pythonImportsCheck = [ "WazeRouteCalculator" ];
29   meta = with lib; {
30     description = "Calculate actual route time and distance with Waze API";
31     homepage = "https://github.com/kovacsbalu/WazeRouteCalculator";
32     license = licenses.gpl3Only;
33     maintainers = with maintainers; [ peterhoeg ];
34   };