about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authornatsukium <tomoya.otabi@gmail.com>2023-06-22 00:02:09 +0900
committernatsukium <tomoya.otabi@gmail.com>2023-06-22 00:02:09 +0900
commit30535debc2403063897db93c8ce02ff450012c8e (patch)
tree2ef974d5547503c3701f6a8c868134973d0d9be6 /pkgs/development
parent4b42083a9dee7edd882003274ac8ca51aa80b35c (diff)
python3Packages.django-hijack-admin: remove
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/django-hijack-admin/default.nix41
1 files changed, 0 insertions, 41 deletions
diff --git a/pkgs/development/python-modules/django-hijack-admin/default.nix b/pkgs/development/python-modules/django-hijack-admin/default.nix
deleted file mode 100644
index 9d3f931cac5f2..0000000000000
--- a/pkgs/development/python-modules/django-hijack-admin/default.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ lib, 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";
-  };
-
-  nativeCheckInputs = [ 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 lib; {
-    description = "Admin integration for django-hijack";
-    homepage = "https://github.com/arteria/django-hijack-admin";
-    license = licenses.mit;
-    maintainers = with maintainers; [ lsix ];
-    # may be unmaintained, doesn't work with recent django-hijack:
-    # https://github.com/django-hijack/django-hijack-admin/issues/46
-    broken = true;
-  };
-}