about summary refs log tree commit diff
path: root/pkgs/applications/search
diff options
context:
space:
mode:
authorFelix Scheinost <fesc@symentis.com>2020-08-26 10:35:02 +0200
committerFelix Scheinost <fesc@symentis.com>2021-02-04 21:06:17 +0100
commit09ecf8ccdacf79bc1552a98c6fbc912faad9d8f2 (patch)
treeea5728123a954a167e7329606becdb4ca743db44 /pkgs/applications/search
parent837b4d86baf835f561f8b6ae29e7436b3e214f08 (diff)
xlsxgrep: init at 0.0.23
Diffstat (limited to 'pkgs/applications/search')
-rw-r--r--pkgs/applications/search/xlsxgrep/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/search/xlsxgrep/default.nix b/pkgs/applications/search/xlsxgrep/default.nix
new file mode 100644
index 0000000000000..8c62ae5736daa
--- /dev/null
+++ b/pkgs/applications/search/xlsxgrep/default.nix
@@ -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;
+  };
+}