mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
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>
This commit is contained in:
parent
86e6b9170c
commit
dcdc03c7c1
|
@ -9820,6 +9820,13 @@
|
|||
githubId = 1016742;
|
||||
name = "Rafael García";
|
||||
};
|
||||
raitobezarius = {
|
||||
email = "ryan@lahfa.xyz";
|
||||
matrix = "@raitobezarius:matrix.org";
|
||||
github = "RaitoBezarius";
|
||||
githubId = 314564;
|
||||
name = "Ryan Lahfa";
|
||||
};
|
||||
raquelgb = {
|
||||
email = "raquel.garcia.bautista@gmail.com";
|
||||
github = "raquelgb";
|
||||
|
|
39
pkgs/development/python-modules/socketio-client/default.nix
Normal file
39
pkgs/development/python-modules/socketio-client/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -9076,6 +9076,8 @@ in {
|
|||
usePython = true;
|
||||
});
|
||||
|
||||
socketio-client = callPackage ../development/python-modules/socketio-client { };
|
||||
|
||||
socialscan = callPackage ../development/python-modules/socialscan { };
|
||||
|
||||
socid-extractor = callPackage ../development/python-modules/socid-extractor { };
|
||||
|
|
Loading…
Reference in a new issue