mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-04 16:51:40 -05:00
commit
053363b007
1 changed files with 11 additions and 0 deletions
|
@ -57,6 +57,8 @@ in
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
aiosqlite = addFlit { drv = super.aiosqlite; };
|
||||||
|
|
||||||
ansible = super.ansible.overridePythonAttrs (
|
ansible = super.ansible.overridePythonAttrs (
|
||||||
old: {
|
old: {
|
||||||
# Inputs copied from nixpkgs as ansible doesn't specify it's dependencies
|
# 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 (
|
pyproj = super.pyproj.overridePythonAttrs (
|
||||||
old: {
|
old: {
|
||||||
buildInputs = (old.buildInputs or [ ]) ++
|
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 (
|
tables = super.tables.overridePythonAttrs (
|
||||||
old: {
|
old: {
|
||||||
buildInputs = (old.buildInputs or [ ]) ++ [ self.pywavelets ];
|
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: {
|
typed_ast = super.typed-ast.overridePythonAttrs (old: {
|
||||||
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [
|
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [
|
||||||
self.pytest-runner
|
self.pytest-runner
|
||||||
|
|
Loading…
Add table
Reference in a new issue