2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-29 13:33:21 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "waitress";
|
2021-03-24 09:28:32 +00:00
|
|
|
version = "2.0.0";
|
2018-10-29 13:33:21 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 09:28:32 +00:00
|
|
|
sha256 = "69e1f242c7f80273490d3403c3976f3ac3b26e289856936d1f620ed48f321897";
|
2018-10-29 13:33:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/Pylons/waitress";
|
2018-10-29 13:33:21 +00:00
|
|
|
description = "Waitress WSGI server";
|
|
|
|
license = licenses.zpl20;
|
2019-07-03 10:27:39 +01:00
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
2018-10-29 13:33:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|