nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 django,
7 gettext,
8}:
9
10buildPythonPackage rec {
11 pname = "pretix-plugin-build";
12 version = "1.0.1";
13 pyproject = true;
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-iLbqcCAbeK4PyLXiebpdE27rt6bOP7eXczIG2bdvvYo=";
18 };
19
20 build-system = [
21 setuptools
22 ];
23
24 dependencies = [
25 django
26 gettext
27 ];
28
29 doCheck = false; # no tests
30
31 meta = {
32 description = "";
33 homepage = "https://github.com/pretix/pretix-plugin-build";
34 license = lib.licenses.asl20;
35 maintainers = with lib.maintainers; [ hexa ];
36 };
37}