4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{ lib, 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 lib; {
|
|
description = "Admin integration for django-hijack";
|
|
homepage = "https://github.com/arteria/django-hijack-admin";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lsix ];
|
|
};
|
|
}
|