20 buildPythonPackage rec {
21 pname = "django-hijack";
25 src = fetchFromGitHub {
26 owner = "django-hijack";
27 repo = "django-hijack";
28 rev = "refs/tags/${version}";
29 hash = "sha256-WQ6s5s4Gccog78++tZX2IZ1605OHGhYSb2aTuU7LyBc=";
37 dependencies = [ django ];
46 export DJANGO_SETTINGS_MODULE=tests.test_app.settings
49 # needed for npmDeps update
50 passthru.updateScript = nix-update-script { };
53 description = "Allows superusers to hijack (=login as) and work on behalf of another user";
54 homepage = "https://github.com/django-hijack/django-hijack";
55 changelog = "https://github.com/django-hijack/django-hijack/releases/tag/${version}";
56 license = licenses.mit;
57 maintainers = with maintainers; [ ris ];