about summary refs log tree commit diff
path: root/pkgs/development/python-modules/file-read-backwards/default.nix
blob: 9317021f45069a2014d4d75b7c1d65d9308877a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildPythonPackage, fetchPypi, mock }:

buildPythonPackage rec {
  pname = "file-read-backwards";
  version = "3.0.0";
  format = "setuptools";

  src = fetchPypi {
    pname = "file_read_backwards";
    inherit version;
    sha256 = "sha256-USw+U0BDUnqPrioLcVGqJV8towPnf9QPfc9CoeCRzCY=";
  };

  nativeCheckInputs = [ mock ];
  pythonImportsCheck = [ "file_read_backwards" ];

  meta = with lib; {
    homepage = "https://github.com/RobinNil/file_read_backwards";
    description = "Memory efficient way of reading files line-by-line from the end of file";
    license = licenses.mit;
    maintainers = with maintainers; [ j0hax ];
  };
}