python310Packages.structlog: remove unused depedency, little cleanup

This commit is contained in:
Sandro Jäckel 2022-05-30 04:22:50 +02:00 committed by Jonathan Ringer
parent 8d1356d44c
commit eee2bff922

View File

@ -5,7 +5,6 @@
, pytest-asyncio
, pretend
, freezegun
, twisted
, simplejson
, six
, pythonAtLeast
@ -16,7 +15,6 @@ buildPythonPackage rec {
version = "21.5.0";
format = "flit";
# sdist is missing conftest.py
src = fetchFromGitHub {
owner = "hynek";
repo = "structlog";
@ -24,12 +22,14 @@ buildPythonPackage rec {
sha256 = "0bc5lj0732j0hjq89llgrncyzs6k3aaffvg07kr3la44w0hlrb4l";
};
checkInputs = [ pytestCheckHook pytest-asyncio pretend freezegun simplejson twisted ];
propagatedBuildInputs = [ six ];
meta = {
checkInputs = [ pytestCheckHook pytest-asyncio pretend freezegun simplejson ];
meta = with lib; {
description = "Painless structural logging";
homepage = "https://github.com/hynek/structlog";
license = lib.licenses.asl20;
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}