nixpkgs/pkgs/development/python-modules/structlog/default.nix

32 lines
590 B
Nix
Raw Normal View History

2017-12-30 12:25:04 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pretend
, freezegun
, simplejson
}:
buildPythonPackage rec {
pname = "structlog";
2017-12-30 12:25:32 +00:00
version = "17.2.0";
2017-12-30 12:25:04 +00:00
src = fetchPypi {
inherit pname version;
2017-12-30 12:25:32 +00:00
sha256 = "6980001045abd235fa12582222627c19b89109e58b85eb77d5a5abc778df6e20";
2017-12-30 12:25:04 +00:00
};
checkInputs = [ pytest pretend freezegun ];
propagatedBuildInputs = [ simplejson ];
checkPhase = ''
rm tests/test_twisted.py*
py.test
'';
meta = {
description = "Painless structural logging";
homepage = http://www.structlog.org/;
license = lib.licenses.asl20;
};
}