mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 23:23:36 +00:00
31 lines
690 B
Nix
31 lines
690 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pretalx-media-ccc-de";
|
|
version = "1.4.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pretalx";
|
|
repo = "pretalx-media-ccc-de";
|
|
rev = "v${version}";
|
|
hash = "sha256-U+26hit4xXUzN8JT3WL+iGohqomX1ENb+ihM9IT1XWQ=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|