Unverified Commit 198bffc2 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #314674 from GaetanLepage/testcontainers

python311Packages.testcontainers: 4.4.1 -> 4.5.0
parents 446284a0 17d3cd2a
Loading
Loading
Loading
Loading
+6 −8
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@

buildPythonPackage rec {
  pname = "testcontainers";
  version = "4.4.1";
  version = "4.5.0";
  disabled = pythonOlder "3.9";

  pyproject = true;
@@ -21,7 +21,7 @@ buildPythonPackage rec {
    owner = "testcontainers";
    repo = "testcontainers-python";
    rev = "refs/tags/testcontainers-v${version}";
    hash = "sha256-osWppbptWpBSHcrHlAqNpn6j2n/qQ7iCobH3TVqB2bc=";
    hash = "sha256-+kMKxitRRjNGVqMJuDdJA0QnYpLicJ6qdD8tzplEbT8=";
  };

  postPatch = ''
@@ -43,12 +43,10 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "testcontainers" ];

  meta = with lib; {
    description = ''
      Allows using docker containers for functional and integration testing
    '';
  meta = {
    description = "Allows using docker containers for functional and integration testing";
    homepage = "https://github.com/testcontainers/testcontainers-python";
    license = licenses.asl20;
    maintainers = with maintainers; [ onny ];
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ onny ];
  };
}