biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / search / xlsxgrep / default.nix
blob5c6ea6c54d60d69ceb948aa490a907af2e5adb80
1 { lib, python3Packages, fetchPypi }:
3 python3Packages.buildPythonApplication rec {
4   pname = "xlsxgrep";
5   version = "0.0.29";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "sha256-vgHNu7MVDjULoBiTkk74W8ZLJ02eds60XshTX3iLJGI=";
10   };
12   pythonPath = with python3Packages; [ xlrd ];
14   meta = with lib; {
15     maintainers = with maintainers; [ felixscheinost ];
16     description = "CLI tool to search text in XLSX and XLS files. It works similarly to Unix/GNU Linux grep";
17     mainProgram = "xlsxgrep";
18     homepage = "https://github.com/zazuum/xlsxgrep";
19     license = licenses.mit;
20   };