depot/third_party/nixpkgs/pkgs/development/python-modules/pyramid-exclog/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

29 lines
659 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pyramid,
}:
buildPythonPackage rec {
pname = "pyramid-exclog";
version = "1.1";
format = "setuptools";
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 ];
};
}