mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
xlsxgrep: init at 0.0.23
This commit is contained in:
parent
837b4d86ba
commit
09ecf8ccda
@ -10614,4 +10614,10 @@
|
||||
github = "zupo";
|
||||
githubId = 311580;
|
||||
};
|
||||
felixscheinost = {
|
||||
name = "Felix Scheinost";
|
||||
email = "felix.scheinost@posteo.de";
|
||||
github = "felixscheinost";
|
||||
githubId = 31761492;
|
||||
};
|
||||
}
|
||||
|
20
pkgs/applications/search/xlsxgrep/default.nix
Normal file
20
pkgs/applications/search/xlsxgrep/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -25950,6 +25950,8 @@ in
|
||||
|
||||
xineUI = callPackage ../applications/video/xine-ui { };
|
||||
|
||||
xlsxgrep = callPackage ../applications/search/xlsxgrep { };
|
||||
|
||||
xmind = callPackage ../applications/misc/xmind { };
|
||||
|
||||
xneur = callPackage ../applications/misc/xneur {
|
||||
|
Loading…
Reference in New Issue
Block a user