poetry2nix/tests/gitlint-core/default.nix
2023-04-19 06:46:11 -04:00

9 lines
174 B
Nix

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