mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
67c66d87d1
Plugin to add static pages to your pretix event
38 lines
724 B
Nix
38 lines
724 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pretix-plugin-build
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pretix-pages";
|
|
version = "1.6.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pretix";
|
|
repo = "pretix-pages";
|
|
rev = "v${version}";
|
|
hash = "sha256-cO5tAiOifLpqFEQwYgrGoByUecpzvue8YmChpPwm+y0=";
|
|
};
|
|
|
|
build-system = [
|
|
pretix-plugin-build
|
|
setuptools
|
|
];
|
|
|
|
doCheck = false; # no tests
|
|
|
|
pythonImportsCheck = [
|
|
"pretix_pages"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Plugin to add static pages to your pretix event";
|
|
homepage = "https://github.com/pretix/pretix-pages";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|