Unverified Commit 8ec4b563 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python312Packages.python-keycloak: format with nixfmt

parent ccbc6218
Loading
Loading
Loading
Loading
+12 −15
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, deprecation
, fetchFromGitHub
, jwcrypto
, poetry-core
, pythonOlder
, requests
, requests-toolbelt
{
  lib,
  buildPythonPackage,
  deprecation,
  fetchFromGitHub,
  jwcrypto,
  poetry-core,
  pythonOlder,
  requests,
  requests-toolbelt,
}:

buildPythonPackage rec {
@@ -29,9 +30,7 @@ buildPythonPackage rec {
      --replace-fail 'version = "0.0.0"' 'version = "${version}"'
  '';

  build-system = [
    poetry-core
  ];
  build-system = [ poetry-core ];

  dependencies = [
    deprecation
@@ -43,9 +42,7 @@ buildPythonPackage rec {
  # Test fixtures require a running keycloak instance
  doCheck = false;

  pythonImportsCheck = [
    "keycloak"
  ];
  pythonImportsCheck = [ "keycloak" ];

  meta = with lib; {
    description = "Provides access to the Keycloak API";