biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / pr / pretix / plugin-build.nix
blob307ff4114eb7ae1d04c1a7f9e5dc2dbfc4c94f4e
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   django,
7   gettext,
8 }:
10 buildPythonPackage rec {
11   pname = "pretix-plugin-build";
12   version = "1.0.1";
13   pyproject = true;
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-iLbqcCAbeK4PyLXiebpdE27rt6bOP7eXczIG2bdvvYo=";
18   };
20   build-system = [
21     setuptools
22   ];
24   dependencies = [
25     django
26     gettext
27   ];
29   doCheck = false; # no tests
31   meta = with lib; {
32     description = "";
33     homepage = "https://github.com/pretix/pretix-plugin-build";
34     license = licenses.asl20;
35     maintainers = with maintainers; [ hexa ];
36   };