mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-04 08:41:42 -05:00
Fix file deps test
This commit is contained in:
parent
cacab99101
commit
ff4c1b9068
2 changed files with 10 additions and 0 deletions
|
@ -6,4 +6,9 @@ poetry2nix.mkPoetryApplication {
|
|||
poetrylock = ./poetry.lock;
|
||||
src = lib.cleanSource ./.;
|
||||
pwd = ./.;
|
||||
overrides = poetry2nix.overrides.withDefaults (self: super: {
|
||||
trivial = super.trivial.overridePythonAttrs (old: {
|
||||
buildInputs = old.buildInputs or [ ] ++ [ self.poetry ];
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
|
@ -6,4 +6,9 @@ poetry2nix.mkPoetryApplication {
|
|||
poetrylock = ./poetry.lock;
|
||||
src = lib.cleanSource ./.;
|
||||
pwd = ./.;
|
||||
overrides = poetry2nix.overrides.withDefaults (self: super: {
|
||||
trivial = super.trivial.overridePythonAttrs (old: {
|
||||
buildInputs = old.buildInputs or [ ] ++ [ self.poetry ];
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue