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