2024-05-15 12:10:42 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
setuptools,
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pretalx-pages";
|
2024-10-21 22:10:35 +00:00
|
|
|
version = "1.6.0";
|
2024-05-15 12:10:42 +00:00
|
|
|
pyproject = true;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pretalx";
|
|
|
|
repo = "pretalx-pages";
|
|
|
|
rev = "v${version}";
|
2024-10-21 22:10:35 +00:00
|
|
|
hash = "sha256-9ZJSW6kdxpwHd25CuGTE4MMXylXaZKL3eAEKKdYiuXs=";
|
2024-05-15 12:10:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "pretalx_pages" ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Static pages for pretalx, e.g. information, venue listings, a Code of Conduct, etc";
|
|
|
|
homepage = "https://github.com/pretalx/pretalx-pages";
|
|
|
|
license = lib.licenses.asl20;
|
|
|
|
maintainers = with lib.maintainers; [ wegank ];
|
|
|
|
};
|
|
|
|
}
|