This commit is contained in:
Daniel Olsen
2020-07-08 23:59:08 +02:00
parent d0720e4407
commit 93aa4063db
2 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "WSGIserver";
version = "1.3";
src = fetchPypi {
inherit pname version;
sha256 = "03jzmilzxlpilhijd63rc1rnlp6x8xsdnsjmlxc269i0p9g1880j";
};
doCheck = false;
meta = with lib; {
homepage = "https://f.gallai.re/wsgiserver";
description = "High-speed, production ready, thread pooled, generic WSGI server with SSL support";
license = licenses.lgpl3Plus;
};
}