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