From 4555d70a0085723d20d9695ad8552837b865b559 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 29 Mar 2026 15:31:47 +0000 Subject: [PATCH] python3Packages.testcontainers: 4.14.1 -> 4.14.2 Diff: https://github.com/testcontainers/testcontainers-python/compare/testcontainers-v4.14.1...testcontainers-v4.14.2 Changelog: https://github.com/testcontainers/testcontainers-python/releases/tag/testcontainers-v4.14.2 --- .../development/python-modules/testcontainers/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/testcontainers/default.nix b/pkgs/development/python-modules/testcontainers/default.nix index 0f40c9771197..dd35cd70b37b 100644 --- a/pkgs/development/python-modules/testcontainers/default.nix +++ b/pkgs/development/python-modules/testcontainers/default.nix @@ -4,7 +4,7 @@ fetchFromGitHub, # build-system - poetry-core, + hatchling, # dependencies docker, @@ -16,21 +16,21 @@ buildPythonPackage (finalAttrs: { pname = "testcontainers"; - version = "4.14.1"; + version = "4.14.2"; pyproject = true; src = fetchFromGitHub { owner = "testcontainers"; repo = "testcontainers-python"; tag = "testcontainers-v${finalAttrs.version}"; - hash = "sha256-BB09uQX33/MiCfEBOXHjhl/OB2S/zKxqxYYcfJqWysY="; + hash = "sha256-AsRTCEICdxrDnsQyfEY19a7Fox9erSJVTykLN3RUlOE="; }; postPatch = '' echo "${finalAttrs.version}" > VERSION ''; - build-system = [ poetry-core ]; + build-system = [ hatchling ]; dependencies = [ docker