tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
xlsxgrep: init at 0.0.23
Felix Scheinost
5 years ago
09ecf8cc
837b4d86
+28
3 changed files
expand all
collapse all
unified
split
maintainers
maintainer-list.nix
pkgs
applications
search
xlsxgrep
default.nix
top-level
all-packages.nix
+6
maintainers/maintainer-list.nix
···
10614
github = "zupo";
10615
githubId = 311580;
10616
};
0
0
0
0
0
0
10617
}
···
10614
github = "zupo";
10615
githubId = 311580;
10616
};
10617
+
felixscheinost = {
10618
+
name = "Felix Scheinost";
10619
+
email = "felix.scheinost@posteo.de";
10620
+
github = "felixscheinost";
10621
+
githubId = 31761492;
10622
+
};
10623
}
+20
pkgs/applications/search/xlsxgrep/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
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
25951
xineUI = callPackage ../applications/video/xine-ui { };
25952
0
0
25953
xmind = callPackage ../applications/misc/xmind { };
25954
25955
xneur = callPackage ../applications/misc/xneur {
···
25950
25951
xineUI = callPackage ../applications/video/xine-ui { };
25952
25953
+
xlsxgrep = callPackage ../applications/search/xlsxgrep { };
25954
+
25955
xmind = callPackage ../applications/misc/xmind { };
25956
25957
xneur = callPackage ../applications/misc/xneur {