
https://github.com/pretix/pretix-servicefees/compare/refs/tags/v1.14.0...refs/tags/v1.14.1
43 lines
798 B
Nix
43 lines
798 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
django,
|
|
pretix-plugin-build,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pretix-servicefees";
|
|
version = "1.14.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pretix";
|
|
repo = "pretix-servicefees";
|
|
tag = "v${version}";
|
|
hash = "sha256-iceFpmuWlq4LnZpG57d4Fwx9bXJDGwx+ox58s8oxupU=";
|
|
};
|
|
|
|
build-system = [
|
|
django
|
|
pretix-plugin-build
|
|
setuptools
|
|
];
|
|
|
|
postBuild = ''
|
|
make
|
|
'';
|
|
|
|
doCheck = false; # no tests
|
|
|
|
pythonImportsCheck = [ "pretix_servicefees" ];
|
|
|
|
meta = with lib; {
|
|
description = "Allows to charge a flat fee on all orders";
|
|
homepage = "https://github.com/pretix/pretix-servicefees";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|