Merge pull request #266158 from risicle/ris-django-hijack-3.4.2

python3Packages.django-hijack: 3.4.1 -> 3.4.2, fix npmDeps hash
This commit is contained in:
Martin Weinelt 2023-11-18 15:39:25 +01:00 committed by GitHub
commit 5679b2b6e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,7 @@
, fetchFromGitHub , fetchFromGitHub
, fetchNpmDeps , fetchNpmDeps
, buildPythonPackage , buildPythonPackage
, nix-update-script
# build-system # build-system
, gettext , gettext
@ -19,14 +20,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "django-hijack"; pname = "django-hijack";
version = "3.4.1"; version = "3.4.2";
format = "setuptools"; format = "setuptools";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "django-hijack"; owner = "django-hijack";
repo = "django-hijack"; repo = "django-hijack";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-y8KT/Fbk2eQDbGzcJtLdwS6jPCNoTWXousvqY+GlFnQ="; hash = "sha256-E5gM/5MIB65gdyv/I+Kuw8rbjPvtUnbCPXpasaIDzyo=";
}; };
postPatch = '' postPatch = ''
@ -39,7 +40,7 @@ buildPythonPackage rec {
npmDeps = fetchNpmDeps { npmDeps = fetchNpmDeps {
inherit src; inherit src;
hash = "sha256-FLfMCn2jsLlTTsC+LRMX0dmVCCbNAr2pQUsSQRKgo6E="; hash = "sha256-4ZVb+V/oYfflIZdme6hbpoSBFVV7lk5wLfEzzBqZv/Y=";
}; };
SETUPTOOLS_SCM_PRETEND_VERSION = version; SETUPTOOLS_SCM_PRETEND_VERSION = version;
@ -67,6 +68,9 @@ buildPythonPackage rec {
"-W" "ignore::DeprecationWarning" "-W" "ignore::DeprecationWarning"
]; ];
# needed for npmDeps update
passthru.updateScript = nix-update-script { };
meta = with lib; { meta = with lib; {
description = "Allows superusers to hijack (=login as) and work on behalf of another user"; description = "Allows superusers to hijack (=login as) and work on behalf of another user";
homepage = "https://github.com/arteria/django-hijack"; homepage = "https://github.com/arteria/django-hijack";