From 2834cd7a53facac000108b4eb7278f0529751d27 Mon Sep 17 00:00:00 2001 From: K900 Date: Wed, 19 Jan 2022 09:43:40 +0300 Subject: [PATCH] overrides: add systemd-python --- overrides.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/overrides.nix b/overrides.nix index 795b3b1..902e093 100644 --- a/overrides.nix +++ b/overrides.nix @@ -1771,6 +1771,11 @@ in }); + systemd-python = super.systemd-python.overridePythonAttrs (old: { + buildInputs = old.buildInputs ++ [ pkgs.systemd ]; + nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.pkg-config ]; + }); + tables = super.tables.overridePythonAttrs ( old: { buildInputs = (old.buildInputs or [ ]) ++ [ self.pywavelets ];