28 lines
548 B
Nix
28 lines
548 B
Nix
{
|
|
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";
|
|
};
|
|
}
|