From 37f85bedff76991e391dc028f9188fb607173cf4 Mon Sep 17 00:00:00 2001 From: Valentin Boettcher Date: Thu, 24 Nov 2022 20:36:45 +0100 Subject: [PATCH] add sqlitedict to setuptools --- flake.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/flake.nix b/flake.nix index ddccf53..2644be8 100644 --- a/flake.nix +++ b/flake.nix @@ -32,6 +32,14 @@ } ); + sqlitedict = super.sqlitedict.overridePythonAttrs ( + old: { + buildInputs = (old.buildInputs or [ ]) ++ [ + self.setuptools + ]; + } + ); + fcspline = super.fcspline.overridePythonAttrs ( old: { buildInputs = (old.buildInputs or [ ]) ++ [