From 203eec1f462299c9882ea352f0426a366400af54 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 4 Apr 2024 11:33:01 +0200 Subject: [PATCH] koodousfinder: use nixfmt --- pkgs/by-name/ko/koodousfinder/package.nix | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/pkgs/by-name/ko/koodousfinder/package.nix b/pkgs/by-name/ko/koodousfinder/package.nix index e77602dcd0b2..103863b76ee3 100644 --- a/pkgs/by-name/ko/koodousfinder/package.nix +++ b/pkgs/by-name/ko/koodousfinder/package.nix @@ -1,6 +1,7 @@ -{ lib -, python3 -, fetchFromGitHub +{ + lib, + python3, + fetchFromGitHub, }: python3.pkgs.buildPythonApplication rec { @@ -17,17 +18,11 @@ python3.pkgs.buildPythonApplication rec { hash = "sha256-skCbt2lDKgSyZdHY3WImbr6CF0icrDPTIXNV1736gKk="; }; - pythonRelaxDeps = [ - "keyring" - ]; + pythonRelaxDeps = [ "keyring" ]; - build-system = with python3.pkgs; [ - poetry-core - ]; + build-system = with python3.pkgs; [ poetry-core ]; - nativeBuildInputs = with python3.pkgs; [ - pythonRelaxDepsHook - ]; + nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ]; dependencies = with python3.pkgs; [ keyring @@ -37,9 +32,7 @@ python3.pkgs.buildPythonApplication rec { # Project has no tests, re-check with next release doCheck = false; - pythonImportsCheck = [ - "koodousfinder" - ]; + pythonImportsCheck = [ "koodousfinder" ]; meta = with lib; { description = "Tool to allows users to search for and analyze Android apps";