python3Packages.matplotlib-sixel: init at 0.0.2

This commit is contained in:
Gaetan Lepage 2023-06-28 17:16:01 +02:00
parent 5257e4d442
commit eb2a888db2
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, buildPythonPackage
, fetchPypi
, matplotlib
}:
buildPythonPackage rec {
pname = "matplotlib-sixel";
version = "0.0.2";
src = fetchPypi {
inherit pname version;
hash = "sha256-JXOb1/IacJV8bhDvF+OPs2Yg1tgRDOqwiAQfiSKTlew=";
};
propagatedBuildInputs = [ matplotlib ];
pythonImportsCheck = [ "sixel" ];
meta = with lib; {
description = "A sixel graphics backend for matplotlib";
homepage = "https://github.com/jonathf/matplotlib-sixel";
license = licenses.bsd3;
maintainers = with maintainers; [ GaetanLepage ];
};
}

View File

@ -6145,6 +6145,8 @@ self: super: with self; {
matplotlib-inline = callPackage ../development/python-modules/matplotlib-inline { };
matplotlib-sixel = callPackage ../development/python-modules/matplotlib-sixel { };
matplotx = callPackage ../development/python-modules/matplotx { };
matrix-api-async = callPackage ../development/python-modules/matrix-api-async { };