mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-19 18:44:13 +00:00
python312Packages.file-read-backwards: format with nixfmt
This commit is contained in:
parent
fbd3a6d3ce
commit
af9e03d31e
@ -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";
|
||||||
|
Loading…
Reference in New Issue
Block a user