feat(packages): cz-conventional-gitmoji
This commit is contained in:
parent
84eab85fa3
commit
bf48dc38cc
1 changed files with 29 additions and 0 deletions
29
packages/cz-conventional-gitmoji/default.nix
Normal file
29
packages/cz-conventional-gitmoji/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
python3Packages,
|
||||||
|
fetchPypi,
|
||||||
|
}:
|
||||||
|
python3Packages.buildPythonPackage rec {
|
||||||
|
pname = "cz-conventional-gitmoji";
|
||||||
|
version = "0.6.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit version;
|
||||||
|
pname = "cz_conventional_gitmoji";
|
||||||
|
hash = "sha256-Pe229rT0aHwA98s+nTHQMEFKZPo/yw6sot8MivFDvAw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
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";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue