overrides: add systemd-python

This commit is contained in:
K900 2022-01-19 09:43:40 +03:00
parent 9b3f728de6
commit 2834cd7a53

View file

@ -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 ];