python312Packages.file-read-backwards: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-08 01:39:41 +02:00
parent fbd3a6d3ce
commit af9e03d31e

View File

@ -1,10 +1,11 @@
{ lib {
, buildPythonPackage lib,
, fetchPypi buildPythonPackage,
, mock fetchPypi,
, pythonOlder mock,
, setuptools pythonOlder,
, unittestCheckHook setuptools,
unittestCheckHook,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -20,18 +21,14 @@ buildPythonPackage rec {
hash = "sha256-vQRZO8GTigAyJL5FHV1zXx9EkOHnClaM6NMwu3ZSpoQ="; hash = "sha256-vQRZO8GTigAyJL5FHV1zXx9EkOHnClaM6NMwu3ZSpoQ=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
nativeCheckInputs = [ nativeCheckInputs = [
mock mock
unittestCheckHook unittestCheckHook
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "file_read_backwards" ];
"file_read_backwards"
];
meta = with lib; { meta = with lib; {
description = "Memory efficient way of reading files line-by-line from the end of file"; description = "Memory efficient way of reading files line-by-line from the end of file";