poetry2nix/tests/mutmut/default.nix
2023-10-24 08:47:16 -04:00

10 lines
200 B
Nix

{ poetry2nix, python310, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
projectDir = ./.;
python = python310;
};
in
runCommand "mutmut-test" { } ''
${env}/bin/mutmut version > $out
''