poetry2nix/tests/file-src-deps/default.nix

15 lines
387 B
Nix
Raw Permalink Normal View History

2021-07-10 13:40:33 +02:00
{ lib, poetry2nix, python3 }:
poetry2nix.mkPoetryApplication {
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
pwd = ./.;
2022-01-18 20:07:35 +12:00
overrides = poetry2nix.overrides.withDefaults (self: super: {
trivial = super.trivial.overridePythonAttrs (old: {
buildInputs = old.buildInputs or [ ] ++ [ self.poetry ];
});
});
2021-07-10 13:40:33 +02:00
}