Unverified Commit 5679b2b6 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

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

python3Packages.django-hijack: 3.4.1 -> 3.4.2, fix npmDeps hash
parents 6bb47ba5 6af2dd04
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
, fetchFromGitHub
, fetchNpmDeps
, buildPythonPackage
, nix-update-script

# build-system
, gettext
@@ -19,14 +20,14 @@

buildPythonPackage rec {
  pname = "django-hijack";
  version = "3.4.1";
  version = "3.4.2";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "django-hijack";
    repo = "django-hijack";
    rev = "refs/tags/${version}";
    hash = "sha256-y8KT/Fbk2eQDbGzcJtLdwS6jPCNoTWXousvqY+GlFnQ=";
    hash = "sha256-E5gM/5MIB65gdyv/I+Kuw8rbjPvtUnbCPXpasaIDzyo=";
  };

  postPatch = ''
@@ -39,7 +40,7 @@ buildPythonPackage rec {

  npmDeps = fetchNpmDeps {
    inherit src;
    hash = "sha256-FLfMCn2jsLlTTsC+LRMX0dmVCCbNAr2pQUsSQRKgo6E=";
    hash = "sha256-4ZVb+V/oYfflIZdme6hbpoSBFVV7lk5wLfEzzBqZv/Y=";
  };

  SETUPTOOLS_SCM_PRETEND_VERSION = version;
@@ -67,6 +68,9 @@ buildPythonPackage rec {
    "-W" "ignore::DeprecationWarning"
  ];

  # needed for npmDeps update
  passthru.updateScript = nix-update-script { };

  meta = with lib; {
    description = "Allows superusers to hijack (=login as) and work on behalf of another user";
    homepage = "https://github.com/arteria/django-hijack";