Skip to content

Commit 56e2046

Browse files
authored
python313Packages.structlog: 25.1.0 -> 25.2.0 (NixOS#389314)
2 parents 06c01cb + 756c290 commit 56e2046

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed
Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,31 @@
11
{
22
lib,
3+
better-exceptions,
34
buildPythonPackage,
45
fetchFromGitHub,
56
freezegun,
7+
greenlet,
68
hatch-fancy-pypi-readme,
79
hatch-vcs,
810
hatchling,
911
pretend,
1012
pytest-asyncio,
1113
pytestCheckHook,
12-
pythonOlder,
14+
rich,
1315
simplejson,
16+
twisted,
1417
}:
1518

1619
buildPythonPackage rec {
1720
pname = "structlog";
18-
version = "25.1.0";
21+
version = "25.2.0";
1922
pyproject = true;
2023

21-
disabled = pythonOlder "3.8";
22-
2324
src = fetchFromGitHub {
2425
owner = "hynek";
2526
repo = "structlog";
2627
tag = version;
27-
hash = "sha256-zhIiDy+Wnt03WDc4BwQpSfiZorDf8BHiORCw8TotgJU=";
28+
hash = "sha256-sDJZMAXOfcBx+PgKt48nsATEiR5QvAfyrCP+qWiTzrc=";
2829
};
2930

3031
build-system = [
@@ -34,20 +35,24 @@ buildPythonPackage rec {
3435
];
3536

3637
nativeCheckInputs = [
38+
better-exceptions
3739
freezegun
40+
greenlet
3841
pretend
3942
pytest-asyncio
4043
pytestCheckHook
44+
rich
4145
simplejson
46+
twisted
4247
];
4348

4449
pythonImportsCheck = [ "structlog" ];
4550

46-
meta = with lib; {
51+
meta = {
4752
description = "Painless structural logging";
4853
homepage = "https://github.com/hynek/structlog";
4954
changelog = "https://github.com/hynek/structlog/blob/${src.tag}/CHANGELOG.md";
50-
license = licenses.asl20;
51-
maintainers = with maintainers; [ dotlambda ];
55+
license = lib.licenses.asl20;
56+
maintainers = with lib.maintainers; [ dotlambda ];
5257
};
5358
}

0 commit comments

Comments
 (0)