depot/third_party/nixpkgs/pkgs/development/python-modules/websocket-client/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

46 lines
901 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 ];
};
}