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

python3Packages.websocket-client: 1.1.0 -> 1.2.0
This commit is contained in:
Sandro 2021-08-11 15:34:53 +02:00 committed by GitHub
commit cf73f35138
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";
};
}