depot/third_party/nixpkgs/pkgs/development/python-modules/gevent-socketio/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

41 lines
817 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
gevent,
gevent-websocket,
mock,
versiontools,
pythonOlder,
}:
buildPythonPackage rec {
pname = "gevent-socketio";
version = "0.3.6";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-UzlKuT+9hNnbuyvvhTSfalA7/FPYapvoZTJQ8aBBKv8=";
};
nativeBuildInputs = [ versiontools ];
buildInputs = [ gevent-websocket ];
propagatedBuildInputs = [ gevent ];
# Tests are not ported to Python 3
doCheck = false;
pythonImportsCheck = [ "socketio" ];
meta = with lib; {
description = "SocketIO server based on the Gevent pywsgi server";
homepage = "https://github.com/abourget/gevent-socketio";
license = licenses.bsd0;
maintainers = with maintainers; [ ];
};
}