Merge pull request #108499 from fabaff/ha-parse

This commit is contained in:
Jörg Thalheim 2021-01-06 07:12:41 +00:00 committed by GitHub
commit 5a18a52a57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -64,7 +64,7 @@
"avion" = ps: with ps; [ ]; # missing inputs: avion "avion" = ps: with ps; [ ]; # missing inputs: avion
"avri" = ps: with ps; [ pycountry ]; # missing inputs: avri-api "avri" = ps: with ps; [ pycountry ]; # missing inputs: avri-api
"awair" = ps: with ps; [ ]; # missing inputs: python_awair "awair" = ps: with ps; [ ]; # missing inputs: python_awair
"aws" = ps: with ps; [ ]; # missing inputs: aiobotocore "aws" = ps: with ps; [ aiobotocore ];
"axis" = ps: with ps; [ aiohttp-cors paho-mqtt ]; # missing inputs: axis "axis" = ps: with ps; [ aiohttp-cors paho-mqtt ]; # missing inputs: axis
"azure_devops" = ps: with ps; [ ]; # missing inputs: aioazuredevops "azure_devops" = ps: with ps; [ ]; # missing inputs: aioazuredevops
"azure_event_hub" = ps: with ps; [ ]; # missing inputs: azure-eventhub "azure_event_hub" = ps: with ps; [ ]; # missing inputs: azure-eventhub
@ -243,7 +243,7 @@
"familyhub" = ps: with ps; [ ]; # missing inputs: python-family-hub-local "familyhub" = ps: with ps; [ ]; # missing inputs: python-family-hub-local
"fan" = ps: with ps; [ ]; "fan" = ps: with ps; [ ];
"fastdotcom" = ps: with ps; [ ]; # missing inputs: fastdotcom "fastdotcom" = ps: with ps; [ ]; # missing inputs: fastdotcom
"feedreader" = ps: with ps; [ feedparser ]; "feedreader" = ps: with ps; [ ]; # missing inputs: feedparser-homeassistant
"ffmpeg" = ps: with ps; [ ha-ffmpeg ]; "ffmpeg" = ps: with ps; [ ha-ffmpeg ];
"ffmpeg_motion" = ps: with ps; [ ha-ffmpeg ]; "ffmpeg_motion" = ps: with ps; [ ha-ffmpeg ];
"ffmpeg_noise" = ps: with ps; [ ha-ffmpeg ]; "ffmpeg_noise" = ps: with ps; [ ha-ffmpeg ];

View File

@ -30,7 +30,7 @@ from urllib.request import urlopen
COMPONENT_PREFIX = "homeassistant.components" COMPONENT_PREFIX = "homeassistant.components"
PKG_SET = "python3Packages" PKG_SET = "python3Packages"
# If some requirements are matched by multiple python packages, # If some requirements are matched by multiple Python packages,
# the following can be used to choose one of them # the following can be used to choose one of them
PKG_PREFERENCES = { PKG_PREFERENCES = {
# Use python3Packages.youtube-dl-light instead of python3Packages.youtube-dl # Use python3Packages.youtube-dl-light instead of python3Packages.youtube-dl
@ -39,6 +39,7 @@ PKG_PREFERENCES = {
"tensorflow-bin_2": "tensorflow", "tensorflow-bin_2": "tensorflow",
"tensorflowWithoutCuda": "tensorflow", "tensorflowWithoutCuda": "tensorflow",
"tensorflow-build_2": "tensorflow", "tensorflow-build_2": "tensorflow",
"whois": "python-whois",
} }