chore: check commit messages

This commit is contained in:
Marc Plano-Lesay 2025-05-22 19:42:47 +10:00
parent 8b3baad1f8
commit 8d117a74d6
Signed by: kernald
GPG key ID: 66A41B08CC62A6CF
4 changed files with 135 additions and 100 deletions

View file

@ -0,0 +1,20 @@
{ python3Packages, fetchPypi, ... }:
python3Packages.buildPythonApplication rec {
pname = "conventional_pre_commit";
version = "4.2.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-a1ooZzOMWKHRTTAN5otWwXt8hAO7EiFV84Y5pCPSH/E=";
};
doCheck = false;
pyproject = true;
build-system = with python3Packages; [
setuptools
setuptools-scm
wheel
];
}