From 218a9c62dd3480a894ce5c4d259496c7a9fbec65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 27 Oct 2025 09:43:32 -0700 Subject: [PATCH] python3Packages.structlog: 25.4.0 -> 25.5.0 Diff: https://github.com/hynek/structlog/compare/25.4.0...25.5.0 Changelog: https://github.com/hynek/structlog/blob/25.5.0/CHANGELOG.md --- .../python-modules/structlog/default.nix | 20 ++++--------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/pkgs/development/python-modules/structlog/default.nix b/pkgs/development/python-modules/structlog/default.nix index d7df69bc30a1..10c60fc80aff 100644 --- a/pkgs/development/python-modules/structlog/default.nix +++ b/pkgs/development/python-modules/structlog/default.nix @@ -1,31 +1,25 @@ { lib, - better-exceptions, buildPythonPackage, fetchFromGitHub, - freezegun, - greenlet, hatch-fancy-pypi-readme, hatch-vcs, hatchling, - pretend, pytest-asyncio, pytestCheckHook, - rich, - simplejson, - twisted, + time-machine, }: buildPythonPackage rec { pname = "structlog"; - version = "25.4.0"; + version = "25.5.0"; pyproject = true; src = fetchFromGitHub { owner = "hynek"; repo = "structlog"; tag = version; - hash = "sha256-iNnUogcICQJvHBZO2J8uk4NleQY/ra3ZzxQgnSRKr30="; + hash = "sha256-dY18eZ7IEzP/eKR7d2CjpTRr2KfXy+YmeZMueHkLSQY="; }; build-system = [ @@ -35,15 +29,9 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ - better-exceptions - freezegun - greenlet - pretend pytest-asyncio pytestCheckHook - rich - simplejson - twisted + time-machine ]; pythonImportsCheck = [ "structlog" ];