Unverified Commit d4815de5 authored by Yt's avatar Yt Committed by GitHub
Browse files

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

parents 7f49ae65 bf490757
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -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 ];
  };
}
})