summary refs log tree commit diff
path: root/pkgs/development/python-modules/django-hijack-admin/default.nix
blob: b2d28229d94b98268ecb3ff486d4e05dab9da00c (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
{ stdenv, buildPythonPackage, fetchFromGitHub, python,
  django_hijack, django_nose }:
buildPythonPackage rec {
  pname = "django-hijack-admin";
  version = "2.1.5";
  name = "${pname}-${version}";

  # the pypi packages don't include everything required for the tests
  src = fetchFromGitHub {
    owner = "arteria";
    repo = "django-hijack-admin";
    rev = "v${version}";
    sha256 = "02j75blvkjiz5mv5wc4jxl27rgmjsrl6l67a3p8342jwazzsm6jg";
  };

  checkInputs = [ django_nose ];
  propagatedBuildInputs = [ django_hijack ];

  checkPhase = ''
    runHook preCheck
    ${python.interpreter} runtests.py hijack_admin
    runHook postCheck
  '';

  meta = with stdenv.lib; {
    description = "Admin integration for django-hijack";
    homepage = https://github.com/arteria/django-hijack;
    license = licenses.mit;
    maintainers = with maintainers; [ lsix ];
  };
}