pretalx.plugins.zammad: init at 2025.0.1

Plugin to link Zammad tickets to Pretalx speakers.
This commit is contained in:
Martin Weinelt
2025-06-25 18:23:19 +02:00
parent 3b6fca1a76
commit 43cd1828d4
@@ -0,0 +1,41 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
zammad-py,
}:
buildPythonPackage rec {
pname = "pretalx-zammad";
version = "2025.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "badbadc0ffee";
repo = "pretalx-zammad";
tag = "v${version}";
hash = "sha256-YIKZO04vaKPGhUrTFiE4F+KjuBrYm0KsxUua5+Hm7gg=";
};
build-system = [
setuptools
];
dependencies = [
zammad-py
];
doCheck = false; # no tests
pythonImportsCheck = [
"pretalx_zammad"
];
meta = {
description = "Pretalx plugin for Zammad issue tracker";
homepage = "https://github.com/badbadc0ffee/pretalx-zammad";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ hexa ];
};
}