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

13 lines
322 B
Nix
Raw Normal View History

{ lib, poetry2nix, python310 }:
2021-07-10 13:40:33 +02:00
poetry2nix.mkPoetryApplication {
python = python310;
2021-07-10 13:40:33 +02:00
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 = self.addBuildSystem "poetry" super.trivial;
2022-01-18 20:07:35 +12:00
});
2021-07-10 13:40:33 +02:00
}