Skip to content

Commit

Permalink
python312Packages.python-keycloak: format with nixfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff authored May 7, 2024
1 parent ccbc621 commit 8ec4b56
Showing 1 changed file with 12 additions and 15 deletions.
27 changes: 12 additions & 15 deletions pkgs/development/python-modules/python-keycloak/default.nix
Original file line number Diff line number Diff line change
@@ -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 {
Expand All @@ -29,9 +30,7 @@ buildPythonPackage rec {
--replace-fail 'version = "0.0.0"' 'version = "${version}"'
'';

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

dependencies = [
deprecation
Expand All @@ -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";
Expand Down

0 comments on commit 8ec4b56

Please sign in to comment.