Loading pkgs/tools/admin/pgadmin/default.nix +12 −1 Original line number Diff line number Diff line Loading @@ -26,7 +26,18 @@ let # keep the scope, as it is used throughout the derivation and tests # this also makes potential future overrides easier pythonPackages = python3.pkgs.overrideScope (final: prev: rec { }); pythonPackages = python3.pkgs.overrideScope (final: prev: rec { # Flask 5.4.3 introduces an CSRF error which makes it impossible to login # So either we downgrade flask here or use "WTF_CSRF_ENABLED = false" in the # module config to disable CSRF. flask-security-too = prev.flask-security-too.overridePythonAttrs (oldAttrs: rec { version = "5.4.1"; src = oldAttrs.src.override { inherit version; hash = "sha256-Ay7+gk+zuUlXtw0LDdsnvSa22z+yE6VR1guu9QmiFvw="; }; }); }); offlineCache = fetchYarnDeps { yarnLock = ./yarn.lock; Loading Loading
pkgs/tools/admin/pgadmin/default.nix +12 −1 Original line number Diff line number Diff line Loading @@ -26,7 +26,18 @@ let # keep the scope, as it is used throughout the derivation and tests # this also makes potential future overrides easier pythonPackages = python3.pkgs.overrideScope (final: prev: rec { }); pythonPackages = python3.pkgs.overrideScope (final: prev: rec { # Flask 5.4.3 introduces an CSRF error which makes it impossible to login # So either we downgrade flask here or use "WTF_CSRF_ENABLED = false" in the # module config to disable CSRF. flask-security-too = prev.flask-security-too.overridePythonAttrs (oldAttrs: rec { version = "5.4.1"; src = oldAttrs.src.override { inherit version; hash = "sha256-Ay7+gk+zuUlXtw0LDdsnvSa22z+yE6VR1guu9QmiFvw="; }; }); }); offlineCache = fetchYarnDeps { yarnLock = ./yarn.lock; Loading