feat(packages): cz-conventional-gitmoji

This commit is contained in:
punkfairie 2025-03-16 12:10:40 -07:00
parent 84eab85fa3
commit 31c274fa7a
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -0,0 +1,28 @@
{
python3Packages,
fetchPypi,
}:
python3Packages.buildPythonPackage rec {
pname = "cz-conventional-gitmoji";
version = "0.6.1";
src = fetchPypi {
inherit pname version;
hash = "test";
};
build-system = with python3Packages; [
hatchling
];
dependencies = with python3Packages; [
commitizen
attrs
];
meta = {
description = "A commitizen plugin that combines gitmoji and conventional commits.";
homepage = "https://github.com/ljnsn/cz-conventional-gitmoji";
mainProgram = "cz_gitmoji";
};
}