Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 24 lines 596 B view raw
1{ stdenv, buildPythonPackage, fetchPypi 2, requests }: 3 4buildPythonPackage rec { 5 pname = "WazeRouteCalculator"; 6 version = "0.9"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "1kwr7r1cn9xxvf9asxqhsy4swx4v6hsgw5cr5wmn71qg11k1i5cx"; 11 }; 12 13 propagatedBuildInputs = [ requests ]; 14 15 # there are no tests 16 doCheck = false; 17 18 meta = with stdenv.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}