python3Packages.testcontainers: 4.13.3 -> 4.14.0 (#478054)

This commit is contained in:
Yt
2026-01-08 22:38:51 +00:00
committed by GitHub
@@ -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 ];
};
}
})