python3Packages.samsungtvws: propagate async extra dependencies

The home-assistant dependency generation does not yet handle extra
requires, so we need to propagate those unconditionally right now.
This commit is contained in:
Martin Weinelt 2022-04-07 02:14:42 +02:00
parent 5800217e89
commit 6518b77721
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,6 +1,8 @@
{ lib, buildPythonPackage, fetchPypi, isPy27
, aiohttp
, requests
, websocket-client
, websockets
}:
buildPythonPackage rec {
@ -14,8 +16,10 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
websocket-client
aiohttp
requests
websocket-client
websockets
];
# no tests