about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/wsgitools/default.nix
blob: 948f932271c1808684e8fa0962e16aa8ac7d8b86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{lib
,buildPythonPackage
,fetchPypi
}:

buildPythonPackage rec {
  pname = "wsgitools";
  version = "0.3.1";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0q6kmrkqf02fgww7z1g9cw8f70fimdzs1bvv9inb7fsk0c3pcf1i";
  };

  meta = with lib; {
    maintainers = with maintainers; [ clkamp ];
    description = "A set of tools working with WSGI";
    longDescription = ''
      wsgitools is a set of tools working with WSGI (see PEP 333). It
      includes classes for filtering content, middlewares for caching,
      logging and tracebacks as well as two backends for SCGI. Goals
      in writing it were portability and simplicity.
    '';
    homepage = "https://subdivi.de/~helmut/wsgitools/";
    license = licenses.gpl2Plus;
    platforms = platforms.all;
  };
}