1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pyramid, 6}: 7 8buildPythonPackage rec { 9 pname = "pyramid-exclog"; 10 version = "1.1"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 pname = "pyramid_exclog"; 15 inherit version; 16 hash = "sha256-Tl2rYH/GifNfB9w4nG9UIqAQz0O6kujCED/4iZnPKDw="; 17 }; 18 19 propagatedBuildInputs = [ pyramid ]; 20 21 pythonImportsCheck = [ "pyramid_exclog" ]; 22 23 meta = with lib; { 24 description = "Package which logs to a Python logger when an exception is raised by a Pyramid application"; 25 homepage = "https://docs.pylonsproject.org/"; 26 license = licenses.bsd0; 27 maintainers = with maintainers; [ ]; 28 }; 29}