Merge pull request #139908 from fabaff/bump-wazeroutecalculator

python3Packages.WazeRouteCalculator: 0.12 -> 0.13
This commit is contained in:
Fabian Affolter 2021-09-30 08:26:51 +02:00 committed by GitHub
commit ab7b350679
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 35 additions and 26 deletions

View File

@ -1,24 +0,0 @@
{ 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 ];
};
}

View File

@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, requests
}:
buildPythonPackage rec {
pname = "wazeroutecalculator";
version = "0.13";
src = fetchPypi {
pname = "WazeRouteCalculator";
inherit version;
sha256 = "sha256-Ex9yglaJkk0+Uo3Y+xpimb5boXz+4QdbJS2O75U6dUg=";
};
propagatedBuildInputs = [
requests
];
# there are no tests
doCheck = false;
pythonImportsCheck = [ "WazeRouteCalculator" ];
meta = with lib; {
description = "Calculate actual route time and distance with Waze API";
homepage = "https://github.com/kovacsbalu/WazeRouteCalculator";
license = licenses.gpl3Only;
maintainers = with maintainers; [ peterhoeg ];
};
}

View File

@ -961,7 +961,7 @@
"waterfurnace" = ps: with ps; [ waterfurnace ]; "waterfurnace" = ps: with ps; [ waterfurnace ];
"watson_iot" = ps: with ps; [ ]; # missing inputs: ibmiotf "watson_iot" = ps: with ps; [ ]; # missing inputs: ibmiotf
"watson_tts" = ps: with ps; [ ibm-watson ]; "watson_tts" = ps: with ps; [ ibm-watson ];
"waze_travel_time" = ps: with ps; [ WazeRouteCalculator ]; "waze_travel_time" = ps: with ps; [ wazeroutecalculator ];
"weather" = ps: with ps; [ ]; "weather" = ps: with ps; [ ];
"webhook" = ps: with ps; [ aiohttp-cors ]; "webhook" = ps: with ps; [ aiohttp-cors ];
"webostv" = ps: with ps; [ aiopylgtv ]; "webostv" = ps: with ps; [ aiopylgtv ];

View File

@ -79,6 +79,7 @@ mapAliases ({
sphinxcontrib_plantuml = sphinxcontrib-plantuml; sphinxcontrib_plantuml = sphinxcontrib-plantuml;
topydo = throw "python3Packages.topydo was moved to topydo"; # 2017-09-22 topydo = throw "python3Packages.topydo was moved to topydo"; # 2017-09-22
tvnamer = throw "python3Packages.tvnamer was moved to tvnamer"; # 2021-07-05 tvnamer = throw "python3Packages.tvnamer was moved to tvnamer"; # 2021-07-05
WazeRouteCalculator = wazeroutecalculator; # 2021-09-29
websocket_client = websocket-client; websocket_client = websocket-client;
zc_buildout221 = zc_buildout; # added 2021-07-21 zc_buildout221 = zc_buildout; # added 2021-07-21
}) })

View File

@ -9546,7 +9546,7 @@ in {
wavedrom = callPackage ../development/python-modules/wavedrom { }; wavedrom = callPackage ../development/python-modules/wavedrom { };
WazeRouteCalculator = callPackage ../development/python-modules/WazeRouteCalculator { }; wazeroutecalculator = callPackage ../development/python-modules/wazeroutecalculator { };
wcmatch = callPackage ../development/python-modules/wcmatch { }; wcmatch = callPackage ../development/python-modules/wcmatch { };