Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / wsgitools / default.nix
blob948f932271c1808684e8fa0962e16aa8ac7d8b86
1 {lib
2 ,buildPythonPackage
3 ,fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "wsgitools";
8   version = "0.3.1";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0q6kmrkqf02fgww7z1g9cw8f70fimdzs1bvv9inb7fsk0c3pcf1i";
14   };
16   meta = with lib; {
17     maintainers = with maintainers; [ clkamp ];
18     description = "A set of tools working with WSGI";
19     longDescription = ''
20       wsgitools is a set of tools working with WSGI (see PEP 333). It
21       includes classes for filtering content, middlewares for caching,
22       logging and tracebacks as well as two backends for SCGI. Goals
23       in writing it were portability and simplicity.
24     '';
25     homepage = "https://subdivi.de/~helmut/wsgitools/";
26     license = licenses.gpl2Plus;
27     platforms = platforms.all;
28   };