From 09c67e6366bf0f4fe8d3c62e6f3aa79a3c1563f9 Mon Sep 17 00:00:00 2001 From: Valentin Boettcher Date: Mon, 28 Nov 2022 17:34:43 -0500 Subject: [PATCH] add setuptools to beartype --- flake.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/flake.nix b/flake.nix index 9fdb056..2edb20c 100644 --- a/flake.nix +++ b/flake.nix @@ -24,6 +24,14 @@ )); overrides = (self: super: { + beartype = super.beartype.overridePythonAttrs ( + old: { + buildInputs = (old.buildInputs or [ ]) ++ [ + self.setuptools + ]; + } + ); + future = super.future.overridePythonAttrs ( old: { buildInputs = (old.buildInputs or [ ]) ++ [