about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-08 02:42:47 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-12 18:24:58 +0100
commitf8623810380752f920b52bb1818e3386f8f349e9 (patch)
treeb36bb3c65344c58b03d3f42e98213985c8403387 /pkgs
parent14ebfcea8c1cba2b138c31b8b8944a3071a001fc (diff)
python3Packages.testcontainers: 3.7.1 -> 4.0.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/testcontainers/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/testcontainers/default.nix b/pkgs/development/python-modules/testcontainers/default.nix
index 4da0d7702317a..8450fcde11262 100644
--- a/pkgs/development/python-modules/testcontainers/default.nix
+++ b/pkgs/development/python-modules/testcontainers/default.nix
@@ -7,15 +7,15 @@
 
 buildPythonPackage rec {
   pname = "testcontainers";
-  version = "3.7.1";
+  version = "4.0.0";
 
   format = "setuptools";
 
   src = fetchFromGitHub {
     owner = "testcontainers";
     repo = "testcontainers-python";
-    rev = "v${version}";
-    hash = "sha256-OHuvUi5oa0fVcfo0FW9XwaUp52MEH4NTM6GqK4ic0oM=";
+    rev = "refs/tags/testcontainers-v${version}";
+    hash = "sha256-cVVP9nGRTLC09KHalQDz7KOszjuFVVpMlee4btPNgd4=";
   };
 
   postPatch = ''