Unverified Commit 1c824330 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

pretix.plugins.dbevent: migrate from dbvat; init at 1.0.0 (#511571)

parents 76d76507 26fa4d8a
Loading
Loading
Loading
Loading
+41 −0
Original line number Diff line number Diff line
@@ -7,15 +7,15 @@
}:

buildPythonPackage rec {
  pname = "pretix-dbvat";
  version = "1.1.0";
  pname = "pretix-dbevent";
  version = "1.0.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pretix";
    repo = "pretix-dbvat";
    repo = "pretix-dbevent";
    rev = "v${version}";
    hash = "sha256-yAKqB0G2WyGqGogAxv8fI34gO6Wl/50sY/5rvWYH4Ho=";
    hash = "sha256-1WUTunDeRh0+hPOF/uLcPmRlUlHAOhOqeoYQNYv0ZLI=";
  };

  build-system = [
@@ -26,13 +26,16 @@ buildPythonPackage rec {
  doCheck = false; # no tests

  pythonImportsCheck = [
    "pretix_dbvat"
    "pretix_dbevent"
  ];

  meta = {
    description = "Plugin for using Deutsche Bahn (DB) Event Discount (Veranstaltungsrabatt)";
    homepage = "https://github.com/pretix/pretix-dbvat";
    description = "Advertise the DB Event Offers for discounted and sustainable train travel to your attendees";
    homepage = "https://github.com/pretix/pretix-dbevent";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ e1mo ];
    maintainers = with lib.maintainers; [
      e1mo
      hexa
    ];
  };
}