mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-02 18:23:44 +00:00
python3Packages.django-hijack-admin: remove
This commit is contained in:
parent
4b42083a9d
commit
30535debc2
@ -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;
|
||||
};
|
||||
}
|
@ -89,6 +89,7 @@ mapAliases ({
|
||||
django_guardian = django-guardian; # added 2022-05-19
|
||||
django_hijack = django-hijack; # added 2023-05-16
|
||||
django_hijack_admin = django-hijack-admin; # added 2023-05-16
|
||||
django-hijack-admin = throw "django-hijack-admin has been removed, since it is no longer compatible to django-hijack"; # added 2023-06-21
|
||||
django_modelcluster = django-modelcluster; # added 2022-04-02
|
||||
django_reversion = django-reversion; # added 2022-06-18
|
||||
django_polymorphic = django-polymorphic; # added 2022-05-24
|
||||
|
@ -2737,8 +2737,6 @@ self: super: with self; {
|
||||
|
||||
django-hierarkey = callPackage ../development/python-modules/django-hierarkey { };
|
||||
|
||||
django-hijack-admin = callPackage ../development/python-modules/django-hijack-admin { };
|
||||
|
||||
django-hijack = callPackage ../development/python-modules/django-hijack { };
|
||||
|
||||
django-i18nfield = callPackage ../development/python-modules/django-i18nfield { };
|
||||
|
Loading…
Reference in New Issue
Block a user