lol

python312Packages.lacuscore: format with nixfmt

+18 -23
+18 -23
pkgs/development/python-modules/lacuscore/default.nix
··· 1 - { lib 2 - , async-timeout 3 - , buildPythonPackage 4 - , defang 5 - , dnspython 6 - , fetchFromGitHub 7 - , playwrightcapture 8 - , poetry-core 9 - , pythonOlder 10 - , redis 11 - , requests 12 - , pythonRelaxDepsHook 13 - , sphinx 14 - , ua-parser 1 + { 2 + lib, 3 + async-timeout, 4 + buildPythonPackage, 5 + defang, 6 + dnspython, 7 + fetchFromGitHub, 8 + playwrightcapture, 9 + poetry-core, 10 + pythonOlder, 11 + redis, 12 + requests, 13 + pythonRelaxDepsHook, 14 + sphinx, 15 + ua-parser, 15 16 }: 16 17 17 18 buildPythonPackage rec { ··· 33 34 "requests" 34 35 ]; 35 36 36 - build-system = [ 37 - poetry-core 38 - ]; 37 + build-system = [ poetry-core ]; 39 38 40 - nativeBuildInputs = [ 41 - pythonRelaxDepsHook 42 - ]; 39 + nativeBuildInputs = [ pythonRelaxDepsHook ]; 43 40 44 41 dependencies = [ 45 42 async-timeout ··· 55 52 # Module has no tests 56 53 doCheck = false; 57 54 58 - pythonImportsCheck = [ 59 - "lacuscore" 60 - ]; 55 + pythonImportsCheck = [ "lacuscore" ]; 61 56 62 57 meta = with lib; { 63 58 description = "The modulable part of Lacus";