Merge pull request #521 from K900/master

Add some overrides
This commit is contained in:
adisbladis 2022-01-19 18:59:36 +12:00 committed by GitHub
commit 053363b007
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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