My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/socketio-client/default.nix

39 lines
763 B

{ 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 ];
};
}