1{ lib
2, buildPythonPackage
3, fetchPypi
4, pyramid
5}:
6
7buildPythonPackage rec {
8 pname = "pyramid_exclog";
9 version = "1.1";
10
11 src = fetchPypi {
12 inherit pname version;
13 hash = "sha256-Tl2rYH/GifNfB9w4nG9UIqAQz0O6kujCED/4iZnPKDw=";
14 };
15
16 propagatedBuildInputs = [ pyramid ];
17
18 pythonImportsCheck = [ "pyramid_exclog" ];
19
20 meta = with lib; {
21 description = "A package which logs to a Python logger when an exception is raised by a Pyramid application";
22 homepage = "https://docs.pylonsproject.org/";
23 license = licenses.bsd0;
24 maintainers = with maintainers; [ domenkozar ];
25 };
26
27}