b5f92a349c
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
28 lines
629 B
Nix
28 lines
629 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pyramid
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyramid-exclog";
|
|
version = "1.1";
|
|
|
|
src = fetchPypi {
|
|
pname = "pyramid_exclog";
|
|
inherit version;
|
|
hash = "sha256-Tl2rYH/GifNfB9w4nG9UIqAQz0O6kujCED/4iZnPKDw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pyramid ];
|
|
|
|
pythonImportsCheck = [ "pyramid_exclog" ];
|
|
|
|
meta = with 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 ];
|
|
};
|
|
|
|
}
|