From 26fb5a3a77a9111aee1510d4175a8e708a83f18c Mon Sep 17 00:00:00 2001 From: Valentin Boettcher Date: Thu, 24 Nov 2022 20:35:50 +0100 Subject: [PATCH] add setuptools to future --- flake.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/flake.nix b/flake.nix index b32f4b6..ddccf53 100644 --- a/flake.nix +++ b/flake.nix @@ -24,6 +24,14 @@ )); overrides = (self: super: { + future = super.future.overridePythonAttrs ( + old: { + buildInputs = (old.buildInputs or [ ]) ++ [ + self.setuptools + ]; + } + ); + fcspline = super.fcspline.overridePythonAttrs ( old: { buildInputs = (old.buildInputs or [ ]) ++ [