poetry2nix/tests/ansible-molecule/default.nix
2022-10-08 03:23:23 +13:00

12 lines
311 B
Nix

{ lib, poetry2nix, python3 }:
(poetry2nix.mkPoetryApplication {
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
}).overridePythonAttrs (old: {
nativeBuildInputs = old.nativeBuildInputs or [ ] ++ [
old.passthru.python.pkgs.setuptools
];
})