summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyramid_exclog/default.nix
blob: 912fb06c11bec301cbb8c9d653bfffee7fcf970f (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
{ stdenv
, buildPythonPackage
, fetchPypi
, pyramid
}:

buildPythonPackage rec {
  pname = "pyramid_exclog";
  version = "1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "d05ced5c12407507154de6750036bc83861b85c11be70b3ec3098c929652c14b";
  };

  propagatedBuildInputs = [ pyramid ];

  meta = with stdenv.lib; {
    description = "A package which logs to a Python logger when an exception is raised by a Pyramid application";
    homepage = https://docs.pylonsproject.org/;
    license = licenses.bsd0;
    maintainers = with maintainers; [ domenkozar ];
  };

}