python312Packages.pysendfile: format with nixfmt

This commit is contained in:
Fabian Affolter
2024-05-02 22:27:20 +02:00
parent c7ff1e36ec
commit d987921c24
@@ -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)";