poetry2nix/tests/ansible-molecule/default.nix

13 lines
311 B
Nix
Raw Normal View History

2020-08-24 18:37:58 +02:00
{ lib, poetry2nix, python3 }:
2022-10-07 23:09:42 +13:00
(poetry2nix.mkPoetryApplication {
2020-08-24 18:37:58 +02:00
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
2022-10-07 23:09:42 +13:00
}).overridePythonAttrs (old: {
nativeBuildInputs = old.nativeBuildInputs or [ ] ++ [
old.passthru.python.pkgs.setuptools
];
})