Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, pyramid 5}: 6 7buildPythonPackage rec { 8 pname = "pyramid_exclog"; 9 version = "1.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "d05ced5c12407507154de6750036bc83861b85c11be70b3ec3098c929652c14b"; 14 }; 15 16 propagatedBuildInputs = [ pyramid ]; 17 18 meta = with stdenv.lib; { 19 description = "A package which logs to a Python logger when an exception is raised by a Pyramid application"; 20 homepage = http://docs.pylonsproject.org/; 21 license = licenses.bsd0; 22 maintainers = with maintainers; [ garbas domenkozar ]; 23 }; 24 25}