about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/pr/pretix/plugin-build.nix
blob: 307ff4114eb7ae1d04c1a7f9e5dc2dbfc4c94f4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
  django,
  gettext,
}:

buildPythonPackage rec {
  pname = "pretix-plugin-build";
  version = "1.0.1";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-iLbqcCAbeK4PyLXiebpdE27rt6bOP7eXczIG2bdvvYo=";
  };

  build-system = [
    setuptools
  ];

  dependencies = [
    django
    gettext
  ];

  doCheck = false; # no tests

  meta = with lib; {
    description = "";
    homepage = "https://github.com/pretix/pretix-plugin-build";
    license = licenses.asl20;
    maintainers = with maintainers; [ hexa ];
  };
}