about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/django-context-decorator/default.nix
blob: 00f4a80e952678f2afdc9e18335f26d35ca7da94 (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, flit-core
, django
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "django-context-decorator";
  version = "1.6.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "rixx";
    repo = "django-context-decorator";
    rev = "v${version}";
    hash = "sha256-lNmZDsguOu2+gtMVjbwr709sbLCQOQ1sAePN7UJQbcw=";
  };

  build-system = [
    flit-core
  ];

  pythonImportsCheck = [
    "django_context_decorator"
  ];

  nativeCheckInputs = [
    django
    pytestCheckHook
  ];

  meta = with lib; {
    description = "Django @context decorator";
    homepage = "https://github.com/rixx/django-context-decorator";
    license = licenses.asl20;
    maintainers = with maintainers; [ hexa ];
  };
}