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:
parent
5800217e89
commit
6518b77721
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue