about summary refs log tree commit diff
path: root/pkgs/development/python-modules/rules/default.nix
blob: 81af412a75d63360a0c87f58d0c766903e64a5e4 (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
38
39
40
41
42
43
44
45
46
47
48
49
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,

  # build-system
  setuptools,

  # tests
  django,
  djangorestframework,
  python,
}:

buildPythonPackage rec {
  pname = "rules";
  version = "3.5.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "dfunckt";
    repo = "django-rules";
    rev = "refs/tags/v${version}";
    hash = "sha256-8Kay2b2uwaI/ml/cPpcj9svoDQI0ptV8tyGeZ76SgZw=";
  };

  build-system = [ setuptools ];

  pythonImportsCheck = [ "rules" ];

  nativeCheckInputs = [
    django
    djangorestframework
  ];

  checkPhase = ''
    runHook preCheck
    ${python.interpreter} tests/manage.py test testsuite -v2
    runHook postCheck
  '';

  meta = with lib; {
    description = "Awesome Django authorization, without the database";
    homepage = "https://github.com/dfunckt/django-rules";
    changelog = "https://github.com/dfunckt/django-rules/blob/${src.rev}/CHANGELOG.md";
    license = licenses.mit;
    maintainers = with maintainers; [ hexa ];
  };
}