python3Packages.websocket_client: 0.57.0 -> 0.58.0

This commit is contained in:
Fabian Affolter 2021-03-14 01:51:53 +01:00
parent 916536210d
commit adced82568

View file

@ -1,25 +1,33 @@
{ lib, buildPythonPackage, fetchPypi, isPy27 { lib
, six
, backports_ssl_match_hostname , backports_ssl_match_hostname
, buildPythonPackage
, fetchPypi
, isPy27
, pytestCheckHook
, six
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "0.57.0";
pname = "websocket_client"; pname = "websocket_client";
version = "0.58.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "d735b91d6d1692a6a181f2a8c9e0238e5f6373356f561bb9dc4c7af36f452010"; sha256 = "sha256-Y1CbQdFYrlt/Z+tK0g/su07umUNOc+FANU3D/44JcW8=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
six six
] ++ lib.optional isPy27 backports_ssl_match_hostname; ] ++ lib.optional isPy27 backports_ssl_match_hostname;
checkInputs = [ pytestCheckHook ];
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";
license = licenses.bsd3; license = licenses.lgpl21Plus;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ fab ];
}; };
} }