2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-16 16:22:59 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pyramid
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyramid_exclog";
|
2018-11-04 10:35:12 +00:00
|
|
|
version = "1.0";
|
2018-10-16 16:22:59 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-04 10:35:12 +00:00
|
|
|
sha256 = "d05ced5c12407507154de6750036bc83861b85c11be70b3ec3098c929652c14b";
|
2018-10-16 16:22:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pyramid ];
|
|
|
|
|
2021-02-16 22:21:20 +00:00
|
|
|
pythonImportsCheck = [ "pyramid_exclog" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-16 16:22:59 +01:00
|
|
|
description = "A package which logs to a Python logger when an exception is raised by a Pyramid application";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://docs.pylonsproject.org/";
|
2018-10-16 16:22:59 +01:00
|
|
|
license = licenses.bsd0;
|
2019-07-03 10:27:39 +01:00
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
2018-10-16 16:22:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|