mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
pythonPackages.wsgitools: init at 0.3.1
This commit is contained in:
parent
0bce142b1e
commit
93919c66a8
2 changed files with 30 additions and 0 deletions
28
pkgs/development/python-modules/wsgitools/default.nix
Normal file
28
pkgs/development/python-modules/wsgitools/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{lib
|
||||
,buildPythonPackage
|
||||
,fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "wsgitools";
|
||||
version = "0.3.1";
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -6245,6 +6245,8 @@ in {
|
|||
|
||||
wsgiproxy2 = callPackage ../development/python-modules/wsgiproxy2 { };
|
||||
|
||||
wsgitools = callPackage ../development/python-modules/wsgitools { };
|
||||
|
||||
wurlitzer = callPackage ../development/python-modules/wurlitzer { };
|
||||
|
||||
xcaplib = callPackage ../development/python-modules/xcaplib { };
|
||||
|
|
Loading…
Reference in a new issue