python3Packages.websocket-client: 1.1.0 -> 1.2.0

This commit is contained in:
Fabian Affolter 2021-08-11 08:08:23 +02:00
parent c475d136df
commit 3f2fc2d110

View File

@ -3,28 +3,34 @@
, fetchPypi , fetchPypi
, pythonOlder , pythonOlder
, pytestCheckHook , pytestCheckHook
, pysocks , python-socks
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "websocket-client"; pname = "websocket-client";
version = "1.1.0"; version = "1.2.0";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-to5JWdcEdo+iDjXJ1QjI3Cu8BB/Y0mfA1zRc/+KCRWg="; sha256 = "sha256-dmW6bGRZibKLYWcIdKt1PmkpF56fyQVlrOasCQ9ZxVk=";
}; };
checkInputs = [ pytestCheckHook pysocks ]; propagatedBuildInputs = [
python-socks
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "websocket" ]; pythonImportsCheck = [ "websocket" ];
meta = with lib; { meta = with lib; {
description = "Websocket client for Python"; description = "Websocket client for Python";
homepage = "https://github.com/websocket-client/websocket-client"; homepage = "https://github.com/websocket-client/websocket-client";
changelog = "https://github.com/websocket-client/websocket-client/blob/v${version}/ChangeLog";
license = licenses.lgpl21Plus; license = licenses.lgpl21Plus;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
changelog = "https://github.com/websocket-client/websocket-client/blob/v${version}/ChangeLog";
}; };
} }