Files
nixpkgs/pkgs/development/python-modules/gevent-websocket/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

39 lines
701 B
Nix

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