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/gevent-websocket/default.nix

39 lines
717 B

{ lib
, buildPythonPackage
, fetchPypi
, gevent
, gunicorn
, pythonOlder
}:
buildPythonPackage rec {
pname = "gevent-websocket";
version = "0.10.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-fq7zKWgpDJEh98Nblz4swwL/sHbQGMkGjS9cqLLYX7A=";
};
propagatedBuildInputs = [
gevent
gunicorn
];
# Module has no test
doCheck = false;
pythonImportsCheck = [
"geventwebsocket"
];
meta = with lib; {
description = "Websocket handler for the gevent pywsgi server";
homepage = "https://www.gitlab.com/noppo/gevent-websocket";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}