From ba47e59440bbcfd1f769600783331f4cb4c95bbe Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 9 Apr 2022 19:37:58 -0700 Subject: [PATCH] python3Packges.websocket: add missing six dependency ``` > Processing ./websocket_client-0.56.0-py2.py3-none-any.whl > ERROR: Could not find a version that satisfies the requirement six (from websocket-client) (from versions: none) > ERROR: No matching distribution found for six > ``` --- pkgs/development/python-modules/websocket-client/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/websocket-client/default.nix b/pkgs/development/python-modules/websocket-client/default.nix index 42d15476ff88..a1c0cfa82e1d 100644 --- a/pkgs/development/python-modules/websocket-client/default.nix +++ b/pkgs/development/python-modules/websocket-client/default.nix @@ -4,6 +4,7 @@ , pythonOlder , pytestCheckHook , python-socks +, six }: buildPythonPackage rec { @@ -18,6 +19,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ python-socks + six ]; checkInputs = [