mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
python3Packages.websocket_client: 0.57.0 -> 0.58.0
This commit is contained in:
parent
916536210d
commit
adced82568
@ -1,25 +1,33 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, isPy27
|
||||
, six
|
||||
{ lib
|
||||
, backports_ssl_match_hostname
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy27
|
||||
, pytestCheckHook
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.57.0";
|
||||
pname = "websocket_client";
|
||||
version = "0.58.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "d735b91d6d1692a6a181f2a8c9e0238e5f6373356f561bb9dc4c7af36f452010";
|
||||
sha256 = "sha256-Y1CbQdFYrlt/Z+tK0g/su07umUNOc+FANU3D/44JcW8=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
six
|
||||
] ++ lib.optional isPy27 backports_ssl_match_hostname;
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "websocket" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Websocket client for python";
|
||||
description = "Websocket client for Python";
|
||||
homepage = "https://github.com/websocket-client/websocket-client";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ ];
|
||||
license = licenses.lgpl21Plus;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user