diff --git a/pkgs/development/python-modules/testcontainers/default.nix b/pkgs/development/python-modules/testcontainers/default.nix index 0f40c9771197..dd35cd70b37b 100644 --- a/pkgs/development/python-modules/testcontainers/default.nix +++ b/pkgs/development/python-modules/testcontainers/default.nix @@ -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