NUR/pkgs/python-modules/wsgiserver/default.nix

22 lines
470 B
Nix
Raw Permalink Normal View History

2020-07-08 23:59:08 +02:00
{ 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;
};
}