From c28748ef965d4a376af826458a334fce15841b69 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 18 May 2024 11:32:39 +0200 Subject: [PATCH] python312Packages.isoweek: format with nixfmt --- .../python-modules/isoweek/default.nix | 26 +++++++------------ 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/pkgs/development/python-modules/isoweek/default.nix b/pkgs/development/python-modules/isoweek/default.nix index 23be48c71a73..70c38d790430 100644 --- a/pkgs/development/python-modules/isoweek/default.nix +++ b/pkgs/development/python-modules/isoweek/default.nix @@ -1,9 +1,10 @@ -{ lib -, fetchPypi -, buildPythonPackage -, setuptools -, unittestCheckHook -, pythonOlder +{ + lib, + fetchPypi, + buildPythonPackage, + setuptools, + unittestCheckHook, + pythonOlder, }: buildPythonPackage rec { @@ -18,17 +19,11 @@ buildPythonPackage rec { hash = "sha256-c/P3usRD4Fo6tFwypyBIsMTybVPYFGLsSxQsdYHT/+g="; }; - build-system = [ - setuptools - ]; + build-system = [ setuptools ]; - nativeCheckInputs = [ - unittestCheckHook - ]; + nativeCheckInputs = [ unittestCheckHook ]; - pythonImportsCheck = [ - "isoweek" - ]; + pythonImportsCheck = [ "isoweek" ]; meta = with lib; { description = "Module work with ISO weeks"; @@ -38,4 +33,3 @@ buildPythonPackage rec { maintainers = with maintainers; [ mrmebelman ]; }; } -