From 59b1aef59071cae6e87859dc65de973d2cc595c0 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 22 May 2024 16:01:06 +0200 Subject: python3Packages: format with nixfmt --- .../python-modules/cachetools/default.nix | 29 +++++++++------------- 1 file changed, 12 insertions(+), 17 deletions(-) (limited to 'pkgs/development/python-modules/cachetools') diff --git a/pkgs/development/python-modules/cachetools/default.nix b/pkgs/development/python-modules/cachetools/default.nix index 8a2f5397d6e12..c5098463552f7 100644 --- a/pkgs/development/python-modules/cachetools/default.nix +++ b/pkgs/development/python-modules/cachetools/default.nix @@ -1,13 +1,14 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pythonOlder +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pythonOlder, -# build-system -, setuptools + # build-system + setuptools, -# tests -, pytestCheckHook + # tests + pytestCheckHook, }: buildPythonPackage rec { @@ -24,17 +25,11 @@ buildPythonPackage rec { hash = "sha256-CmyAW9uV63OV/zZsWwZkXOWbHfHAJdYFGJsRhpqQ1f4="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "cachetools" - ]; + pythonImportsCheck = [ "cachetools" ]; meta = with lib; { description = "Extensible memoizing collections and decorators"; -- cgit 1.4.1