Merge pull request #133461 from fabaff/bump-websocket-client

python3Packages.websocket-client: 1.1.0 -> 1.2.0

authored by Sandro and committed by GitHub cf73f351 edee3f8e

+11 -5
+11 -5
pkgs/development/python-modules/websocket-client/default.nix
··· 3 , fetchPypi 4 , pythonOlder 5 , pytestCheckHook 6 - , pysocks 7 }: 8 9 buildPythonPackage rec { 10 pname = "websocket-client"; 11 - version = "1.1.0"; 12 disabled = pythonOlder "3.6"; 13 14 src = fetchPypi { 15 inherit pname version; 16 - sha256 = "sha256-to5JWdcEdo+iDjXJ1QjI3Cu8BB/Y0mfA1zRc/+KCRWg="; 17 }; 18 19 - checkInputs = [ pytestCheckHook pysocks ]; 20 21 pythonImportsCheck = [ "websocket" ]; 22 23 meta = with lib; { 24 description = "Websocket client for Python"; 25 homepage = "https://github.com/websocket-client/websocket-client"; 26 license = licenses.lgpl21Plus; 27 maintainers = with maintainers; [ fab ]; 28 - changelog = "https://github.com/websocket-client/websocket-client/blob/v${version}/ChangeLog"; 29 }; 30 }
··· 3 , fetchPypi 4 , pythonOlder 5 , pytestCheckHook 6 + , python-socks 7 }: 8 9 buildPythonPackage rec { 10 pname = "websocket-client"; 11 + version = "1.2.0"; 12 disabled = pythonOlder "3.6"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + sha256 = "sha256-dmW6bGRZibKLYWcIdKt1PmkpF56fyQVlrOasCQ9ZxVk="; 17 }; 18 19 + propagatedBuildInputs = [ 20 + python-socks 21 + ]; 22 + 23 + checkInputs = [ 24 + pytestCheckHook 25 + ]; 26 27 pythonImportsCheck = [ "websocket" ]; 28 29 meta = with lib; { 30 description = "Websocket client for Python"; 31 homepage = "https://github.com/websocket-client/websocket-client"; 32 + changelog = "https://github.com/websocket-client/websocket-client/blob/v${version}/ChangeLog"; 33 license = licenses.lgpl21Plus; 34 maintainers = with maintainers; [ fab ]; 35 }; 36 }