shw.swh-auth: update python-keycloak

This commit is contained in:
Gabriel Arazas 2023-05-09 16:03:56 +08:00
parent d864480236
commit 03140974e8
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -1,6 +1,7 @@
{ stdenv, lib, python3Packages, swh-core, ... }:
with python3Packages;
buildPythonPackage rec {
pname = "swh-auth";
version = "0.7.1";
@ -20,7 +21,15 @@ buildPythonPackage rec {
sentry-sdk
click
pyyaml
python-keycloak
(python-keycloak.overrideAttrs (final: prev: rec {
version = "2.16.1";
src = pkgs.fetchPypi {
inherit version;
pname = "python_keycloak";
hash = "sha256-LyJwC274wWcoSoLCNzb2/ryQW9CrhZgdyhIXGt82Z68=";
};
propagatedBuildInputs = prev.propagatedBuildInputs ++ [ setuptools deprecation ];
}))
swh-core
];