Merge pull request #96352 from felixscheinost/add_xlsxgrep

xlsxgrep: init at 0.0.23
This commit is contained in:
taku0 2021-02-11 16:34:35 +09:00 committed by GitHub
commit 3d94e81a16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 28 additions and 0 deletions

View File

@ -10680,4 +10680,10 @@
github = "zupo";
githubId = 311580;
};
felixscheinost = {
name = "Felix Scheinost";
email = "felix.scheinost@posteo.de";
github = "felixscheinost";
githubId = 31761492;
};
}

View File

@ -0,0 +1,20 @@
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "xlsxgrep";
version = "0.0.23";
src = python3Packages.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;
};
}

View File

@ -26009,6 +26009,8 @@ in
xineUI = callPackage ../applications/video/xine-ui { };
xlsxgrep = callPackage ../applications/search/xlsxgrep { };
xmind = callPackage ../applications/misc/xmind { };
xneur = callPackage ../applications/misc/xneur {