Unverified Commit 43cd1828 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

pretalx.plugins.zammad: init at 2025.0.1

Plugin to link Zammad tickets to Pretalx speakers.
parent 3b6fca1a
Loading
Loading
Loading
Loading
+41 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}