lol

python3.pkgs.tikzplotlib: init at 0.10.1

+46
+44
pkgs/development/python-modules/tikzplotlib/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , matplotlib 5 + , numpy 6 + , pillow 7 + , webcolors 8 + , flit-core 9 + , pytestCheckHook 10 + , pandas 11 + }: 12 + 13 + buildPythonPackage rec { 14 + pname = "tikzplotlib"; 15 + version = "0.10.1"; 16 + format = "pyproject"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "nschloe"; 20 + repo = pname; 21 + rev = "v${version}"; 22 + sha256 = "sha256-PLExHhEnxkEiXsE0rqvpNWwVZ+YoaDa2BTx8LktdHl0="; 23 + }; 24 + 25 + propagatedBuildInputs = [ 26 + matplotlib 27 + numpy 28 + pillow 29 + webcolors 30 + flit-core 31 + ]; 32 + 33 + checkInputs = [ 34 + pytestCheckHook 35 + pandas 36 + ]; 37 + 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 + }; 44 + }
+2
pkgs/top-level/python-packages.nix
··· 9913 9913 9914 9914 tika = callPackage ../development/python-modules/tika { }; 9915 9915 9916 + tikzplotlib = callPackage ../development/python-modules/tikzplotlib { }; 9917 + 9916 9918 tiledb = callPackage ../development/python-modules/tiledb { 9917 9919 inherit (pkgs) tiledb; 9918 9920 };