Merge pull request #206192 from dotlambda/home-assistant-here_travel_time

home-assistant: support here_travel_time component
This commit is contained in:
Martin Weinelt 2022-12-15 16:05:29 +01:00 committed by GitHub
commit 94fa2d6c13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 124 additions and 1 deletions

View File

@ -0,0 +1,58 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, poetry-core
, aiohttp
, async-timeout
, yarl
, aresponses
, pytest-asyncio
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "here-routing";
version = "0.2.0";
disabled = pythonOlder "3.8";
format = "pyproject";
src = fetchFromGitHub {
owner = "eifinger";
repo = "here_routing";
rev = "v${version}";
hash = "sha256-IXiYLDrPXc6YT8u0QT6f2GAjBNYhWwzkFxGhmAyiq5s=";
};
postPatch = ''
sed -i "/^addopts/d" pyproject.toml
'';
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
aiohttp
async-timeout
yarl
];
checkInputs = [
aresponses
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "here_routing" ];
meta = {
changelog = "https://github.com/eifinger/here_routing/blob/${src.rev}/CHANGELOG.md";
description = "Asynchronous Python client for the HERE Routing V8 API";
homepage = "https://github.com/eifinger/here_routing";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}

View File

@ -0,0 +1,58 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, poetry-core
, aiohttp
, async-timeout
, yarl
, aresponses
, pytest-asyncio
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "here-transit";
version = "1.2.0";
disabled = pythonOlder "3.8";
format = "pyproject";
src = fetchFromGitHub {
owner = "eifinger";
repo = "here_transit";
rev = "v${version}";
hash = "sha256-C5HZZCmK9ILUUXyx1i/cUggSM3xbOzXiJ13hrT2DWAI=";
};
postPatch = ''
sed -i "/^addopts/d" pyproject.toml
'';
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
aiohttp
async-timeout
yarl
];
checkInputs = [
aresponses
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "here_transit" ];
meta = {
changelog = "https://github.com/eifinger/here_transit/blob/${src.rev}/CHANGELOG.md";
description = "Asynchronous Python client for the HERE Routing V8 API";
homepage = "https://github.com/eifinger/here_transit";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}

View File

@ -1349,7 +1349,9 @@
pyheos
];
"here_travel_time" = ps: with ps; [
]; # missing inputs: here_routing here_transit
here-routing
here-transit
];
"hexaom" = ps: with ps; [
];
"hi_kumo" = ps: with ps; [
@ -4315,6 +4317,7 @@
"hddtemp"
"hdmi_cec"
"heos"
"here_travel_time"
"hisense_aehw4a1"
"history"
"history_stats"

View File

@ -4212,6 +4212,10 @@ self: super: with self; {
hepunits = callPackage ../development/python-modules/hepunits { };
here-routing = callPackage ../development/python-modules/here-routing { };
here-transit = callPackage ../development/python-modules/here-transit { };
herepy = callPackage ../development/python-modules/herepy { };
hetzner = callPackage ../development/python-modules/hetzner { };