From bf490757fb015f2a0b158d08f5db752f1d5bc446 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 8 Jan 2026 13:11:16 +0100 Subject: [PATCH] python3Packages.testcontainers: 4.13.3 -> 4.14.0 Diff: https://github.com/testcontainers/testcontainers-python/compare/testcontainers-v4.13.3...testcontainers-v4.14.0 Changelog: https://github.com/testcontainers/testcontainers-python/releases/tag/testcontainers-v4.14.0 --- .../python-modules/testcontainers/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/testcontainers/default.nix b/pkgs/development/python-modules/testcontainers/default.nix index 7c774efef349..54d194d3fe57 100644 --- a/pkgs/development/python-modules/testcontainers/default.nix +++ b/pkgs/development/python-modules/testcontainers/default.nix @@ -14,20 +14,20 @@ wrapt, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "testcontainers"; - version = "4.13.3"; + version = "4.14.0"; pyproject = true; src = fetchFromGitHub { owner = "testcontainers"; repo = "testcontainers-python"; - tag = "testcontainers-v${version}"; - hash = "sha256-/lIjrJO+Mw0gv0Ym98A4TrISvmKkCKLFeoJu6t9q9kE="; + tag = "testcontainers-v${finalAttrs.version}"; + hash = "sha256-Zquh1tY9Z2BU6BPsEGR4eBjcHVB4KsxOQ81Tk6YTyTQ="; }; postPatch = '' - echo "${version}" > VERSION + echo "${finalAttrs.version}" > VERSION ''; build-system = [ poetry-core ]; @@ -51,8 +51,8 @@ buildPythonPackage rec { meta = { description = "Allows using docker containers for functional and integration testing"; homepage = "https://github.com/testcontainers/testcontainers-python"; - changelog = "https://github.com/testcontainers/testcontainers-python/releases/tag/testcontainers-v${version}"; + changelog = "https://github.com/testcontainers/testcontainers-python/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ onny ]; }; -} +})