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 pname = "pyramid_exclog"; 13 inherit version; 14 hash = "sha256-Tl2rYH/GifNfB9w4nG9UIqAQz0O6kujCED/4iZnPKDw="; 15 }; 16 17 propagatedBuildInputs = [ pyramid ]; 18 19 pythonImportsCheck = [ "pyramid_exclog" ]; 20 21 meta = with lib; { 22 description = "A package which logs to a Python logger when an exception is raised by a Pyramid application"; 23 homepage = "https://docs.pylonsproject.org/"; 24 license = licenses.bsd0; 25 maintainers = with maintainers; [ domenkozar ]; 26 }; 27 28}