mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-26 14:53:52 +00:00
pretalx.plugins.media-ccc-de: init at 1.2.1
This commit is contained in:
parent
a2b0c5a8ad
commit
e52264a8e0
30
pkgs/by-name/pr/pretalx/plugins/media-ccc-de.nix
Normal file
30
pkgs/by-name/pr/pretalx/plugins/media-ccc-de.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user