depot/third_party/nixpkgs/pkgs/development/python-modules/websocket-client/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

40 lines
911 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
python-socks,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "websocket-client";
version = "1.8.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "websocket_client";
inherit version;
hash = "sha256-Mjnfn0TaYy+WASRygF1AojKBqZECfOEdL0Wm8krEw9o=";
};
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 ];
};
}