3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/structlog/default.nix

38 lines
720 B
Nix
Raw Normal View History

2017-12-30 12:25:04 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, python-rapidjson
2017-12-30 12:25:04 +00:00
, pretend
, freezegun
, twisted
2017-12-30 12:25:04 +00:00
, simplejson
, six
, pythonAtLeast
2017-12-30 12:25:04 +00:00
}:
buildPythonPackage rec {
pname = "structlog";
2019-10-24 07:47:49 +01:00
version = "19.2.0";
2017-12-30 12:25:04 +00:00
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:49 +01:00
sha256 = "4287058cf4ce1a59bc5dea290d6386d37f29a37529c9a51cdf7387e51710152b";
2017-12-30 12:25:04 +00:00
};
checkInputs = [ pytest pretend freezegun simplejson twisted ]
++ lib.optionals (pythonAtLeast "3.6") [ python-rapidjson ];
propagatedBuildInputs = [ six ];
2017-12-30 12:25:04 +00:00
checkPhase = ''
# rm tests/test_twisted.py*
2017-12-30 12:25:04 +00:00
py.test
'';
meta = {
description = "Painless structural logging";
homepage = http://www.structlog.org/;
license = lib.licenses.asl20;
};
}