2021-01-25 00:26:54 -08:00
|
|
|
{ lib
|
2018-10-29 06:33:21 -07:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "waitress";
|
2020-06-05 23:47:36 -07:00
|
|
|
version = "1.4.4";
|
2018-10-29 06:33:21 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-05 23:47:36 -07:00
|
|
|
sha256 = "1bb436508a7487ac6cb097ae7a7fe5413aefca610550baf58f0940e51ecfb261";
|
2018-10-29 06:33:21 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/Pylons/waitress";
|
2018-10-29 06:33:21 -07:00
|
|
|
description = "Waitress WSGI server";
|
|
|
|
license = licenses.zpl20;
|
2019-07-03 02:27:39 -07:00
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
2018-10-29 06:33:21 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|