Skip to content

Commit d4815de

Browse files
authored
python3Packages.testcontainers: 4.13.3 -> 4.14.0 (#478054)
2 parents 7f49ae6 + bf49075 commit d4815de

File tree

1 file changed

+7
-7
lines changed
  • pkgs/development/python-modules/testcontainers

1 file changed

+7
-7
lines changed

pkgs/development/python-modules/testcontainers/default.nix

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@
1414
wrapt,
1515
}:
1616

17-
buildPythonPackage rec {
17+
buildPythonPackage (finalAttrs: {
1818
pname = "testcontainers";
19-
version = "4.13.3";
19+
version = "4.14.0";
2020
pyproject = true;
2121

2222
src = fetchFromGitHub {
2323
owner = "testcontainers";
2424
repo = "testcontainers-python";
25-
tag = "testcontainers-v${version}";
26-
hash = "sha256-/lIjrJO+Mw0gv0Ym98A4TrISvmKkCKLFeoJu6t9q9kE=";
25+
tag = "testcontainers-v${finalAttrs.version}";
26+
hash = "sha256-Zquh1tY9Z2BU6BPsEGR4eBjcHVB4KsxOQ81Tk6YTyTQ=";
2727
};
2828

2929
postPatch = ''
30-
echo "${version}" > VERSION
30+
echo "${finalAttrs.version}" > VERSION
3131
'';
3232

3333
build-system = [ poetry-core ];
@@ -51,8 +51,8 @@ buildPythonPackage rec {
5151
meta = {
5252
description = "Allows using docker containers for functional and integration testing";
5353
homepage = "https://github.com/testcontainers/testcontainers-python";
54-
changelog = "https://github.com/testcontainers/testcontainers-python/releases/tag/testcontainers-v${version}";
54+
changelog = "https://github.com/testcontainers/testcontainers-python/releases/tag/${finalAttrs.src.tag}";
5555
license = lib.licenses.asl20;
5656
maintainers = with lib.maintainers; [ onny ];
5757
};
58-
}
58+
})

0 commit comments

Comments
 (0)