ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / tikzplotlib / default.nix
blobebf58dd12e9c26316f63905147b4f9467b8a5ecf
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , matplotlib
5 , numpy
6 , pillow
7 , webcolors
8 , flit-core
9 , pytestCheckHook
10 , pandas
13 buildPythonPackage rec {
14   pname = "tikzplotlib";
15   version = "0.10.1";
16   format = "pyproject";
18   src = fetchFromGitHub {
19     owner = "nschloe";
20     repo = pname;
21     rev = "v${version}";
22     sha256 = "sha256-PLExHhEnxkEiXsE0rqvpNWwVZ+YoaDa2BTx8LktdHl0=";
23   };
25   propagatedBuildInputs = [
26     matplotlib
27     numpy
28     pillow
29     webcolors
30     flit-core
31   ];
33   checkInputs = [
34     pytestCheckHook
35     pandas
36   ];
38   meta = with lib; {
39     description = "Save matplotlib figures as TikZ/PGFplots for smooth integration into LaTeX";
40     homepage = "https://github.com/nschloe/tikzplotlib";
41     license = licenses.mit;
42     maintainers = with maintainers; [ doronbehar ];
43   };