8 buildPythonPackage rec {
9 pname = "matplotlib-sixel";
13 inherit pname version;
14 hash = "sha256-JXOb1/IacJV8bhDvF+OPs2Yg1tgRDOqwiAQfiSKTlew=";
17 propagatedBuildInputs = [ matplotlib ];
20 substituteInPlace sixel/sixel.py \
21 --replace 'Popen(["convert",' 'Popen(["${imagemagick}/bin/convert",'
24 pythonImportsCheck = [ "sixel" ];
27 description = "A sixel graphics backend for matplotlib";
28 homepage = "https://github.com/jonathf/matplotlib-sixel";
29 license = licenses.bsd3;
30 maintainers = with maintainers; [ GaetanLepage ];