biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / pr / pretalx / plugins / media-ccc-de.nix
blob82bcf966e7d7b51ac11fde0cfee527b806bd6321
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6 }:
8 buildPythonPackage rec {
9   pname = "pretalx-media-ccc-de";
10   version = "1.3.0";
11   pyproject = true;
13   src = fetchFromGitHub {
14     owner = "pretalx";
15     repo = "pretalx-media-ccc-de";
16     rev = "v${version}";
17     hash = "sha256-Cr9qbkb1VOH2EtDLSA5jmLiCnn1ICdvHnmTugCvHLc0=";
18   };
20   build-system = [ setuptools ];
22   pythonImportsCheck = [ "pretalx_media_ccc_de" ];
24   meta = {
25     description = "Pull recordings from media.ccc.de and embed them in talk pages";
26     homepage = "https://github.com/pretalx/pretalx-media-ccc-de";
27     license = lib.licenses.asl20;
28     maintainers = with lib.maintainers; [ wegank ];
29   };