python313Packages.changelog-chug: init at 0.0.3

New build dependency for python-daemon.
This commit is contained in:
Martin Weinelt
2025-01-27 10:56:56 +01:00
parent 75dacd98ba
commit c3bcaace73
2 changed files with 56 additions and 0 deletions
@@ -0,0 +1,54 @@
{
lib,
buildPythonPackage,
fetchFromSourcehut,
docutils,
semver,
setuptools,
coverage,
testscenarios,
testtools,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "changelog-chug";
version = "0.0.3";
pyproject = true;
src = fetchFromSourcehut {
owner = "~bignose";
repo = "changelog-chug";
rev = "release/${version}";
hash = "sha256-SPwFkmRQMpdsVmzZE4mB2J9wsfvE1K21QDkOQ2XPlow=";
};
build-system = [
docutils
semver
setuptools
];
dependencies = [
docutils
semver
];
nativeCheckInputs = [
coverage
testscenarios
testtools
unittestCheckHook
];
pythonImportsCheck = [
"chug"
];
meta = {
description = "Changelog document parser";
homepage = "https://git.sr.ht/~bignose/changelog-chug";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ ];
};
}
+2
View File
@@ -2252,6 +2252,8 @@ self: super: with self; {
changefinder = callPackage ../development/python-modules/changefinder { };
changelog-chug = callPackage ../development/python-modules/changelog-chug { };
channels = callPackage ../development/python-modules/channels { };
channels-redis = callPackage ../development/python-modules/channels-redis { };