Merge pull request #311611 from GaetanLepage/testcontainers

python311Packages.testcontainers: 4.4.0 -> 4.4.1

authored by OTABI Tomoya and committed by GitHub b45d8ffb 609d8d60

+3 -3
+3 -3
pkgs/development/python-modules/testcontainers/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "testcontainers"; 14 - version = "4.4.0"; 14 + version = "4.4.1"; 15 15 disabled = pythonOlder "3.9"; 16 16 17 17 pyproject = true; ··· 20 20 owner = "testcontainers"; 21 21 repo = "testcontainers-python"; 22 22 rev = "refs/tags/testcontainers-v${version}"; 23 - hash = "sha256-1iwbfArEjYxpEpMlmJ8rzVLXA8OSNT7ozkpTVTIL91U="; 23 + hash = "sha256-osWppbptWpBSHcrHlAqNpn6j2n/qQ7iCobH3TVqB2bc="; 24 24 }; 25 25 26 26 postPatch = '' 27 27 echo "${version}" > VERSION 28 28 ''; 29 29 30 - nativeBuildInputs = [ 30 + build-system = [ 31 31 poetry-core 32 32 ]; 33 33