Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
781 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchFromGitHub,
pretix-plugin-build,
setuptools,
}:
buildPythonPackage {
pname = "pretix-stretchgoals";
version = "1.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "rixx";
repo = "pretix-stretchgoals";
rev = "177238920a863f71cf03f174e2841f5b630574e9";
hash = "sha256-Sbbxg6viRdALjZwqEmN2Js/qbMShe5xMg00jUccnhsA=";
};
build-system = [
pretix-plugin-build
setuptools
];
doCheck = false; # no tests
pythonImportsCheck = [
"pretix_stretchgoals"
];
meta = with lib; {
description = "Display the average ticket sales price over time";
homepage = "https://github.com/rixx/pretix-stretchgoals";
license = licenses.asl20;
maintainers = with maintainers; [ hexa ];
};
}