tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3.pkgs.tikzplotlib: init at 0.10.1
Doron Behar
4 years ago
011045e3
4ce387ea
+46
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
tikzplotlib
default.nix
top-level
python-packages.nix
+44
pkgs/development/python-modules/tikzplotlib/default.nix
reviewed
···
1
1
+
{ lib
2
2
+
, buildPythonPackage
3
3
+
, fetchFromGitHub
4
4
+
, matplotlib
5
5
+
, numpy
6
6
+
, pillow
7
7
+
, webcolors
8
8
+
, flit-core
9
9
+
, pytestCheckHook
10
10
+
, pandas
11
11
+
}:
12
12
+
13
13
+
buildPythonPackage rec {
14
14
+
pname = "tikzplotlib";
15
15
+
version = "0.10.1";
16
16
+
format = "pyproject";
17
17
+
18
18
+
src = fetchFromGitHub {
19
19
+
owner = "nschloe";
20
20
+
repo = pname;
21
21
+
rev = "v${version}";
22
22
+
sha256 = "sha256-PLExHhEnxkEiXsE0rqvpNWwVZ+YoaDa2BTx8LktdHl0=";
23
23
+
};
24
24
+
25
25
+
propagatedBuildInputs = [
26
26
+
matplotlib
27
27
+
numpy
28
28
+
pillow
29
29
+
webcolors
30
30
+
flit-core
31
31
+
];
32
32
+
33
33
+
checkInputs = [
34
34
+
pytestCheckHook
35
35
+
pandas
36
36
+
];
37
37
+
38
38
+
meta = with lib; {
39
39
+
description = "Save matplotlib figures as TikZ/PGFplots for smooth integration into LaTeX";
40
40
+
homepage = "https://github.com/nschloe/tikzplotlib";
41
41
+
license = licenses.mit;
42
42
+
maintainers = with maintainers; [ doronbehar ];
43
43
+
};
44
44
+
}
+2
pkgs/top-level/python-packages.nix
reviewed
···
9913
9913
9914
9914
tika = callPackage ../development/python-modules/tika { };
9915
9915
9916
9916
+
tikzplotlib = callPackage ../development/python-modules/tikzplotlib { };
9917
9917
+
9916
9918
tiledb = callPackage ../development/python-modules/tiledb {
9917
9919
inherit (pkgs) tiledb;
9918
9920
};