Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
54 lines
1.0 KiB
Nix
54 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pretix-plugin-build,
|
|
setuptools,
|
|
django,
|
|
drafthorse,
|
|
ghostscript_headless,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pretix-zugferd";
|
|
version = "2.5.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pretix";
|
|
repo = "pretix-zugferd";
|
|
rev = "v${version}";
|
|
hash = "sha256-Qy/yfinj5EGjzhJmiczOSIP/GsTZabFt8e6Ki4AaN6w=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pretix_zugferd/invoice.py \
|
|
--replace-fail 'fallback="gs"' 'fallback="${lib.getExe ghostscript_headless}"'
|
|
'';
|
|
|
|
pythonRelaxDeps = [ "drafthorse" ];
|
|
|
|
build-system = [
|
|
django
|
|
pretix-plugin-build
|
|
setuptools
|
|
];
|
|
|
|
postBuild = ''
|
|
make
|
|
'';
|
|
|
|
dependencies = [ drafthorse ];
|
|
|
|
doCheck = false; # no tests
|
|
|
|
pythonImportsCheck = [ "pretix_zugferd" ];
|
|
|
|
meta = with lib; {
|
|
description = "Annotate pretix' invoices with ZUGFeRD data";
|
|
homepage = "https://github.com/pretix/pretix-zugferd";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|