From d987921c24d820a47c6cbe0dbbd32c50ccc0f2af Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 2 May 2024 22:27:20 +0200 Subject: [PATCH] python312Packages.pysendfile: format with nixfmt --- .../python-modules/pysendfile/default.nix | 21 ++++++++----------- 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/pysendfile/default.nix b/pkgs/development/python-modules/pysendfile/default.nix index d59a99926435..0edd04ae331a 100644 --- a/pkgs/development/python-modules/pysendfile/default.nix +++ b/pkgs/development/python-modules/pysendfile/default.nix @@ -1,9 +1,10 @@ -{ lib -, stdenv -, buildPythonPackage -, fetchPypi -, pythonOlder -, setuptools +{ + lib, + stdenv, + buildPythonPackage, + fetchPypi, + pythonOlder, + setuptools, }: buildPythonPackage rec { @@ -18,16 +19,12 @@ buildPythonPackage rec { hash = "sha256-UQpBSycJhvujx5y3bZCkyRDHAb+0P/mDpdTpKEYFDhc="; }; - build-system = [ - setuptools - ]; + build-system = [ setuptools ]; # Tests depend on asynchat and asyncore doCheck = false; - pythonImportsCheck = [ - "sendfile" - ]; + pythonImportsCheck = [ "sendfile" ]; meta = with lib; { description = "A Python interface to sendfile(2)";