gitlab-art: init at 0.5.0
This commit is contained in:
@@ -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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user