aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/django-hijack-admin
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-10-05 12:43:18 +0000
committerKatharina Fey <kookie@spacekookie.de>2019-10-05 12:44:52 +0000
commitcf85056ba64caf3267d43255ef4a1243e9c8ee3b (patch)
tree3051519e9c8275b870aac43f80af875715c9d124 /nixpkgs/pkgs/development/python-modules/django-hijack-admin
parent1148b1d122bc03e9a3665856c9b7bb96bd4e3994 (diff)
parent2436c27541b2f52deea3a4c1691216a02152e729 (diff)
Add 'nixpkgs/' from commit '2436c27541b2f52deea3a4c1691216a02152e729'
git-subtree-dir: nixpkgs git-subtree-mainline: 1148b1d122bc03e9a3665856c9b7bb96bd4e3994 git-subtree-split: 2436c27541b2f52deea3a4c1691216a02152e729
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/django-hijack-admin')
-rw-r--r--nixpkgs/pkgs/development/python-modules/django-hijack-admin/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/django-hijack-admin/default.nix b/nixpkgs/pkgs/development/python-modules/django-hijack-admin/default.nix
new file mode 100644
index 00000000000..005d61acab9
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/django-hijack-admin/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, buildPythonPackage, fetchFromGitHub, python,
+ django_hijack, django_nose }:
+buildPythonPackage rec {
+ pname = "django-hijack-admin";
+ version = "2.1.10";
+
+ # the pypi packages don't include everything required for the tests
+ src = fetchFromGitHub {
+ owner = "arteria";
+ repo = "django-hijack-admin";
+ rev = "v${version}";
+ sha256 = "0m98lchp2y43886n67j4s7miyd50pg2r5r966vjnxmd7nx7qkihf";
+ };
+
+ checkInputs = [ django_nose ];
+ propagatedBuildInputs = [ django_hijack ];
+
+ checkPhase = ''
+ runHook preCheck
+
+ # we have to do a little bit of tinkering to convince the tests to run against the installed package, not the
+ # source directory
+ mkdir testbase
+ pushd testbase
+ mv ../runtests.py .
+ ${python.interpreter} runtests.py hijack_admin
+ popd
+
+ runHook postCheck
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Admin integration for django-hijack";
+ homepage = https://github.com/arteria/django-hijack-admin;
+ license = licenses.mit;
+ maintainers = with maintainers; [ lsix ];
+ };
+}