depot/third_party/nixpkgs/pkgs/development/python-modules/waitress/default.nix
Default email 2ce89355c3 Project import generated by Copybara.
GitOrigin-RevId: 22a81aa5fc15b2d41b12f7160a71cd4a9f3c3fa1
2020-06-15 17:56:04 +02:00

24 lines
486 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "waitress";
version = "1.4.4";
src = fetchPypi {
inherit pname version;
sha256 = "1bb436508a7487ac6cb097ae7a7fe5413aefca610550baf58f0940e51ecfb261";
};
doCheck = false;
meta = with stdenv.lib; {
homepage = "https://github.com/Pylons/waitress";
description = "Waitress WSGI server";
license = licenses.zpl20;
maintainers = with maintainers; [ domenkozar ];
};
}