blade-formatter: 1.42.0 -> 1.42.1 (#376873)
[NixPkgs.git] / pkgs / by-name / pr / pretix / plugins / stretchgoals.nix
blobafdb4616bcd101db6b9bb5ff8fb63c29d3cb70f0
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pretix-plugin-build,
6   setuptools,
7 }:
9 buildPythonPackage {
10   pname = "pretix-avgchart";
11   version = "unstable-2023-11-27";
12   pyproject = true;
14   src = fetchFromGitHub {
15     owner = "rixx";
16     repo = "pretix-avgchart";
17     rev = "219816c7ec523a5c23778523b2616ac0c835cb3a";
18     hash = "sha256-1V/0PUvStgQeBQ0v6GoofAgyPmWs3RD+v5ekmAO9vFU=";
19   };
21   build-system = [
22     pretix-plugin-build
23     setuptools
24   ];
26   doCheck = false; # no tests
28   pythonImportsCheck = [
29     "pretix_stretchgoals"
30   ];
32   meta = with lib; {
33     description = "Display the average ticket sales price over time";
34     homepage = "https://github.com/rixx/pretix-avgchart";
35     license = licenses.asl20;
36     maintainers = with maintainers; [ hexa ];
37   };