depot/third_party/nixpkgs/pkgs/development/python-modules/websocket-client/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

39 lines
885 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
python-socks,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "websocket-client";
version = "1.7.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-EOUR6jqMdEYx07135h6xftCTBMQTrULPbd+kx3h+j+Y=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ python-socks ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "websocket" ];
meta = with lib; {
description = "Websocket client for Python";
mainProgram = "wsdump";
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 ];
};
}