about summary refs log tree commit diff
path: root/pkgs/development/python-modules/websocket-client
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-08-11 08:08:23 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-08-11 08:08:23 +0200
commit3f2fc2d110a9c113f433fda4099319d6ae165155 (patch)
tree3bd31012510880bc8767740e5a9318bd3055ffb8 /pkgs/development/python-modules/websocket-client
parentc475d136df85b6551f9249b6465bd3832238ea26 (diff)
python3Packages.websocket-client: 1.1.0 -> 1.2.0
Diffstat (limited to 'pkgs/development/python-modules/websocket-client')
-rw-r--r--pkgs/development/python-modules/websocket-client/default.nix16
1 files changed, 11 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/websocket-client/default.nix b/pkgs/development/python-modules/websocket-client/default.nix
index ee09ceb105046..4822922da3ce3 100644
--- a/pkgs/development/python-modules/websocket-client/default.nix
+++ b/pkgs/development/python-modules/websocket-client/default.nix
@@ -3,28 +3,34 @@
 , fetchPypi
 , pythonOlder
 , pytestCheckHook
-, pysocks
+, python-socks
 }:
 
 buildPythonPackage rec {
   pname = "websocket-client";
-  version = "1.1.0";
+  version = "1.2.0";
   disabled = pythonOlder "3.6";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-to5JWdcEdo+iDjXJ1QjI3Cu8BB/Y0mfA1zRc/+KCRWg=";
+    sha256 = "sha256-dmW6bGRZibKLYWcIdKt1PmkpF56fyQVlrOasCQ9ZxVk=";
   };
 
-  checkInputs = [ pytestCheckHook pysocks ];
+  propagatedBuildInputs = [
+    python-socks
+   ];
+
+  checkInputs = [
+    pytestCheckHook
+  ];
 
   pythonImportsCheck = [ "websocket" ];
 
   meta = with lib; {
     description = "Websocket client for Python";
     homepage = "https://github.com/websocket-client/websocket-client";
+    changelog = "https://github.com/websocket-client/websocket-client/blob/v${version}/ChangeLog";
     license = licenses.lgpl21Plus;
     maintainers = with maintainers; [ fab ];
-    changelog = "https://github.com/websocket-client/websocket-client/blob/v${version}/ChangeLog";
   };
 }