xlsxgrep: init at 0.0.23

+28
+6
maintainers/maintainer-list.nix
··· 10614 10614 github = "zupo"; 10615 10615 githubId = 311580; 10616 10616 }; 10617 + felixscheinost = { 10618 + name = "Felix Scheinost"; 10619 + email = "felix.scheinost@posteo.de"; 10620 + github = "felixscheinost"; 10621 + githubId = 31761492; 10622 + }; 10617 10623 }
+20
pkgs/applications/search/xlsxgrep/default.nix
··· 1 + { lib, python3Packages }: 2 + 3 + python3Packages.buildPythonApplication rec { 4 + pname = "xlsxgrep"; 5 + version = "0.0.23"; 6 + 7 + src = python3Packages.fetchPypi { 8 + inherit pname version; 9 + sha256 = "014i1nifx67mxi0k9sch00j6bjykb6krzl2q3ara9s1g75inl4rm"; 10 + }; 11 + 12 + pythonPath = with python3Packages; [ xlrd ]; 13 + 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 + homepage = "https://github.com/zazuum/xlsxgrep"; 18 + license = licenses.mit; 19 + }; 20 + }
+2
pkgs/top-level/all-packages.nix
··· 25950 25950 25951 25951 xineUI = callPackage ../applications/video/xine-ui { }; 25952 25952 25953 + xlsxgrep = callPackage ../applications/search/xlsxgrep { }; 25954 + 25953 25955 xmind = callPackage ../applications/misc/xmind { }; 25954 25956 25955 25957 xneur = callPackage ../applications/misc/xneur {