gitlab-art: init at 0.5.0

This commit is contained in:
Trent Baldwin
2026-02-07 17:33:29 -05:00
parent 895c66264b
commit 401b493482
+37
View File
@@ -0,0 +1,37 @@
{
lib,
fetchFromGitHub,
python3Packages,
}:
python3Packages.buildPythonApplication rec {
pname = "gitlab-art";
version = "0.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "kosma";
repo = "gitlab-art";
tag = "v${version}";
hash = "sha256-j1MdkZUGMfrzowdhjJKhZqwN07JusaJsGkFu78IFdTY=";
};
build-system = with python3Packages; [
setuptools
];
dependencies = with python3Packages; [
pyaml
platformdirs
click
python-gitlab
];
meta = {
description = "Pull cross-project Gitlab artifact dependencies";
homepage = "https://github.com/kosma/gitlab-art";
changelog = "https://github.com/kosma/gitlab-art/releases/tag/${src.tag}";
license = lib.licenses.wtfpl;
maintainers = with lib.maintainers; [ tbaldwin ];
mainProgram = "art";
};
}