depot/third_party/nixpkgs/pkgs/development/python-modules/pyramid_exclog/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

27 lines
605 B
Nix

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