From 83c02e39a57db3724f6b245fdf98df291d24735e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 7 May 2024 23:18:51 +0200 Subject: [PATCH] python311Packages.fastcore: format with nixfmt --- .../python-modules/fastcore/default.nix | 27 ++++++++----------- 1 file changed, 11 insertions(+), 16 deletions(-) diff --git a/pkgs/development/python-modules/fastcore/default.nix b/pkgs/development/python-modules/fastcore/default.nix index 0c9c8820888d..b7dba4cf9dba 100644 --- a/pkgs/development/python-modules/fastcore/default.nix +++ b/pkgs/development/python-modules/fastcore/default.nix @@ -1,10 +1,11 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, packaging -, pytestCheckHook -, pythonOlder -, setuptools +{ + lib, + buildPythonPackage, + fetchFromGitHub, + packaging, + pytestCheckHook, + pythonOlder, + setuptools, }: buildPythonPackage rec { @@ -21,20 +22,14 @@ buildPythonPackage rec { hash = "sha256-Zf6bNHMiYEJrLPU1w7OvEavdKIageG+sJ9W8OE/ET0M="; }; - build-system = [ - setuptools - ]; + build-system = [ setuptools ]; - dependencies = [ - packaging - ]; + dependencies = [ packaging ]; # Module has no tests doCheck = false; - pythonImportsCheck = [ - "fastcore" - ]; + pythonImportsCheck = [ "fastcore" ]; meta = with lib; { description = "Python module for Fast AI";