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
1 changed files with 10 additions and 13 deletions

View File

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