Merge pull request #302526 from GaetanLepage/testcontainers

python311Packages.testcontainers: 4.3.1 -> 4.3.3
This commit is contained in:
OTABI Tomoya 2024-04-11 20:26:15 +09:00 committed by GitHub
commit 5767a044ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,11 +6,12 @@
, deprecation , deprecation
, docker , docker
, wrapt , wrapt
, typing-extensions
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "testcontainers"; pname = "testcontainers";
version = "4.3.1"; version = "4.3.3";
disabled = pythonOlder "3.9"; disabled = pythonOlder "3.9";
pyproject = true; pyproject = true;
@ -19,7 +20,7 @@ buildPythonPackage rec {
owner = "testcontainers"; owner = "testcontainers";
repo = "testcontainers-python"; repo = "testcontainers-python";
rev = "refs/tags/testcontainers-v${version}"; rev = "refs/tags/testcontainers-v${version}";
hash = "sha256-pS5YEcHDHpTIWLD4vMPWL4r86DOI+47jN7cTwhDeXHE="; hash = "sha256-qb7mOtL+YJI24DOBgrqxc817k4fD2kTOtUNF2X0qEIc=";
}; };
postPatch = '' postPatch = ''
@ -36,6 +37,10 @@ buildPythonPackage rec {
wrapt wrapt
]; ];
dependencies = [
typing-extensions
];
# Tests require various container and database services running # Tests require various container and database services running
doCheck = false; doCheck = false;