mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
26 lines
584 B
Nix
26 lines
584 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pyramid
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyramid_exclog";
|
|
version = "1.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "d05ced5c12407507154de6750036bc83861b85c11be70b3ec3098c929652c14b";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pyramid ];
|
|
|
|
meta = with stdenv.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 ];
|
|
};
|
|
|
|
}
|