poetry2nix/tests/gitlint/default.nix
Victor Engmark de242a31f2 fix: gitlint needs hatch-vcs
Looks like it must be kept in tandem with gitlint-core.
2023-03-30 11:25:29 +13:00

9 lines
169 B
Nix

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