depot/third_party/nixpkgs/pkgs/by-name/pr/pretalx/plugins/media-ccc-de.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

30 lines
690 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "pretalx-media-ccc-de";
version = "1.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "pretalx";
repo = "pretalx-media-ccc-de";
rev = "v${version}";
hash = "sha256-QCnZZpYjHxj92Dl2nRd4lXapufcqRmlVH6LEq0rzQ2U=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "pretalx_media_ccc_de" ];
meta = {
description = "Pull recordings from media.ccc.de and embed them in talk pages";
homepage = "https://github.com/pretalx/pretalx-media-ccc-de";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ wegank ];
};
}