diff --git a/overrides.nix b/overrides.nix index d50440b..902e093 100644 --- a/overrides.nix +++ b/overrides.nix @@ -57,6 +57,8 @@ in } ); + aiosqlite = addFlit { drv = super.aiosqlite; }; + ansible = super.ansible.overridePythonAttrs ( old: { # Inputs copied from nixpkgs as ansible doesn't specify it's dependencies @@ -1321,6 +1323,8 @@ in } ); + pypika-tortoise = addPoetry { drv = super.pypika-tortoise; }; + pyproj = super.pyproj.overridePythonAttrs ( old: { buildInputs = (old.buildInputs or [ ]) ++ @@ -1767,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 ]; @@ -1897,6 +1906,8 @@ in })) { }; + tortoise-orm = addPoetry { drv = super.tortoise-orm; }; + typed_ast = super.typed-ast.overridePythonAttrs (old: { nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.pytest-runner