python3.pkgs.tikzplotlib: init at 0.10.1
This commit is contained in:
parent
4ce387ea40
commit
011045e3ba
44
pkgs/development/python-modules/tikzplotlib/default.nix
Normal file
44
pkgs/development/python-modules/tikzplotlib/default.nix
Normal file
@ -0,0 +1,44 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, matplotlib
|
||||
, numpy
|
||||
, pillow
|
||||
, webcolors
|
||||
, flit-core
|
||||
, pytestCheckHook
|
||||
, pandas
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "tikzplotlib";
|
||||
version = "0.10.1";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nschloe";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-PLExHhEnxkEiXsE0rqvpNWwVZ+YoaDa2BTx8LktdHl0=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
matplotlib
|
||||
numpy
|
||||
pillow
|
||||
webcolors
|
||||
flit-core
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
pandas
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Save matplotlib figures as TikZ/PGFplots for smooth integration into LaTeX";
|
||||
homepage = "https://github.com/nschloe/tikzplotlib";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ doronbehar ];
|
||||
};
|
||||
}
|
@ -9913,6 +9913,8 @@ in {
|
||||
|
||||
tika = callPackage ../development/python-modules/tika { };
|
||||
|
||||
tikzplotlib = callPackage ../development/python-modules/tikzplotlib { };
|
||||
|
||||
tiledb = callPackage ../development/python-modules/tiledb {
|
||||
inherit (pkgs) tiledb;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user