biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / pr / pretalx / plugins / downstream.nix
blobab94b50ac767dd85181860d2de7f14e00e802dde
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6 }:
8 buildPythonPackage rec {
9   pname = "pretalx-downstream";
10   version = "1.3.0";
11   pyproject = true;
13   src = fetchFromGitHub {
14     owner = "pretalx";
15     repo = "pretalx-downstream";
16     rev = "v${version}";
17     hash = "sha256-xpacfU655vg6g1rD4uteeizj+Bll4fgI0AEddaGiCLE=";
18   };
20   build-system = [ setuptools ];
22   pythonImportsCheck = [ "pretalx_downstream" ];
24   meta = {
25     description = "Use pretalx passively by importing another event's schedule";
26     homepage = "https://github.com/pretalx/pretalx-downstream";
27     license = lib.licenses.asl20;
28     maintainers = with lib.maintainers; [ wegank ];
29   };