Unverified Commit 7c7f88ed authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

python3Packages.testcontainers: 4.14.1 -> 4.14.2 (#504725)

parents 245f5bf1 4555d70a
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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