159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
30 lines
690 B
Nix
30 lines
690 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pretalx-media-ccc-de";
|
|
version = "1.3.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pretalx";
|
|
repo = "pretalx-media-ccc-de";
|
|
rev = "v${version}";
|
|
hash = "sha256-Cr9qbkb1VOH2EtDLSA5jmLiCnn1ICdvHnmTugCvHLc0=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|