grav1
This commit is contained in:
21
pkgs/python-modules/wsgiserver/default.nix
Normal file
21
pkgs/python-modules/wsgiserver/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user