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/python-socketio/default.nix

36 lines
723 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, bidict
, python-engineio
, mock
}:
buildPythonPackage rec {
pname = "python-socketio";
version = "5.0.4";
src = fetchFromGitHub {
owner = "miguelgrinberg";
repo = "python-socketio";
rev = "v${version}";
sha256 = "0mpqr53mrdzk9ki24y1inpsfvjlvm7pvxf8q4d52m80i5pcd5v5q";
};
propagatedBuildInputs = [
bidict
python-engineio
];
checkInputs = [ mock ];
# tests only on github, but latest github release not tagged
doCheck = false;
meta = with lib; {
description = "Socket.IO server";
homepage = "https://github.com/miguelgrinberg/python-socketio/";
license = licenses.mit;
maintainers = [ maintainers.mic92 ];
};
}