From 5d3411617719b5a6471ccb684e0104a2e35121f2 Mon Sep 17 00:00:00 2001 From: sepiabrown Date: Sun, 24 Jul 2022 19:09:38 +0900 Subject: [PATCH] overrides.tqdm: fix `overrideAttrs` to `overridePythonAttrs` --- overrides/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overrides/default.nix b/overrides/default.nix index 1aade6f..e0284cb 100644 --- a/overrides/default.nix +++ b/overrides/default.nix @@ -2287,7 +2287,7 @@ lib.composeManyExtensions [ # For some reason the toml dependency of tqdm declared here: # https://github.com/tqdm/tqdm/blob/67130a23646ae672836b971e1086b6ae4c77d930/pyproject.toml#L2 # is not translated correctly to a nix dependency. - tqdm = super.tqdm.overrideAttrs ( + tqdm = super.tqdm.overridePythonAttrs ( old: { buildInputs = [ super.toml ] ++ (old.buildInputs or [ ]); }