python312Packages.python-keycloak: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-08 00:00:01 +02:00 committed by GitHub
parent ccbc62189a
commit 8ec4b563b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,12 +1,13 @@
{ 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";