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