python3Packages.mergecal: init at 0.5.0

This commit is contained in:
Kerstin Humm
2025-03-13 10:44:44 +01:00
parent 4483e78ccb
commit 56d7ffe96d
2 changed files with 50 additions and 0 deletions
@@ -0,0 +1,48 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
icalendar,
rich,
typer,
x-wr-timezone,
pytestCheckHook,
pytest-cov-stub,
}:
buildPythonPackage rec {
pname = "mergecal";
version = "0.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "mergecal";
repo = "python-mergecal";
tag = "v${version}";
hash = "sha256-Je3gFREu97Ycofszhr6pKOCiK76oBuzb3ji4LAf5aE8=";
};
build-system = [ setuptools ];
dependencies = [
icalendar
rich
typer
x-wr-timezone
];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
];
pythonImportChecks = [ "mergecal" ];
meta = {
homepage = "https://mergecal.readthedocs.io/en/latest/";
changelog = "https://github.com/mergecal/python-mergecal/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ erictapen ];
};
}
+2
View File
@@ -8288,6 +8288,8 @@ self: super: with self; {
merge3 = callPackage ../development/python-modules/merge3 { };
mergecal = callPackage ../development/python-modules/mergecal { };
mergedb = callPackage ../development/python-modules/mergedb { };
mergedeep = callPackage ../development/python-modules/mergedeep { };