poetry2nix/tests/procrastinate/default.nix
2023-09-22 09:07:37 +00:00

12 lines
184 B
Nix

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