about summary refs log tree commit diff
path: root/pkgs/applications/search/xlsxgrep/default.nix
blob: 18b3a1a26c8734b9de7714448b95b962e213f570 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, python3Packages, fetchPypi }:

python3Packages.buildPythonApplication rec {
  pname = "xlsxgrep";
  version = "0.0.23";

  src = fetchPypi {
    inherit pname version;
    sha256 = "014i1nifx67mxi0k9sch00j6bjykb6krzl2q3ara9s1g75inl4rm";
  };

  pythonPath = with python3Packages; [ xlrd ];

  meta = with lib; {
    maintainers = with maintainers; [ felixscheinost ];
    description = "CLI tool to search text in XLSX and XLS files. It works similarly to Unix/GNU Linux grep";
    homepage = "https://github.com/zazuum/xlsxgrep";
    license = licenses.mit;
  };
}