anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / wsgitools / default.nix
blob83b33529214d3d78b4cb40b30e727f19bd57f38c
2   lib,
3   buildPythonPackage,
4   pythonAtLeast,
5   fetchPypi,
6   setuptools,
7   pyasyncore,
8   unittestCheckHook,
9 }:
11 buildPythonPackage rec {
12   pname = "wsgitools";
13   version = "0.3.1";
14   pyproject = true;
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-MTh2BwNTu7NsTHuvoH+r0YHjEGfphX84f04Ah2eu02A=";
19   };
21   build-system = [ setuptools ];
23   # the built-in asyncore library was removed in python 3.12
24   dependencies = lib.optionals (pythonAtLeast "3.12") [ pyasyncore ];
26   pythonImportsCheck = [ "wsgitools" ];
28   nativeCheckInputs = [ unittestCheckHook ];
30   meta = with lib; {
31     maintainers = with maintainers; [ clkamp ];
32     description = "Set of tools working with WSGI";
33     longDescription = ''
34       wsgitools is a set of tools working with WSGI (see PEP 333). It
35       includes classes for filtering content, middlewares for caching,
36       logging and tracebacks as well as two backends for SCGI. Goals
37       in writing it were portability and simplicity.
38     '';
39     homepage = "https://subdivi.de/~helmut/wsgitools/";
40     license = licenses.gpl2Plus;
41     platforms = platforms.all;
42   };