nixpkgs/pkgs/development/python-modules/socketio-client/default.nix
Ryan Lahfa dcdc03c7c1
python3Packages.socketio-client: init at 0.7.2 (#155269)
Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-01-17 13:12:04 +01:00

40 lines
763 B
Nix

{ lib
, buildPythonPackage
, requests
, six
, websocket-client
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "socketio-client";
version = "0.7.2";
src = fetchFromGitHub {
owner = "invisibleroads";
repo = "socketio-client";
rev = version;
sha256 = "sha256-71sjiGJDDYElPGUNCH1HaVdvgMt8KeD/kXVDpF615ho=";
};
propagatedBuildInputs = [
six
websocket-client
requests
];
# Perform networking tests.
doCheck = false;
pythonImportsCheck = [
"socketIO_client"
];
meta = with lib; {
description = "A socket.io client library for protocol 1.x";
homepage = "https://github.com/invisibleroads/socketIO-client";
license = licenses.mit;
maintainers = with maintainers; [ raitobezarius ];
};
}