summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--nixos/tests/acme.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/acme.nix b/nixos/tests/acme.nix
index f44524a1d6a..d7452744e17 100644
--- a/nixos/tests/acme.nix
+++ b/nixos/tests/acme.nix
@@ -14,8 +14,8 @@ let
 
       pythonPackages = (super.python.override {
         packageOverrides = lib.const (pysuper: {
-          certifi = pysuper.certifi.overrideDerivation (drv: {
-            postPatch = (drv.postPatch or "") + ''
+          certifi = pysuper.certifi.overridePythonAttrs (attrs: {
+            postPatch = (attrs.postPatch or "") + ''
               cat "${self.cacert}/etc/ssl/certs/ca-bundle.crt" \
                 > certifi/cacert.pem
             '';