10 buildPythonPackage rec {
11 pname = "matplotlib-sixel";
16 inherit pname version;
17 hash = "sha256-JXOb1/IacJV8bhDvF+OPs2Yg1tgRDOqwiAQfiSKTlew=";
20 build-system = [ setuptools ];
22 dependencies = [ matplotlib ];
25 substituteInPlace sixel/sixel.py \
26 --replace-fail 'Popen(["convert",' 'Popen(["${imagemagick}/bin/convert",'
29 pythonImportsCheck = [ "sixel" ];
32 description = "Sixel graphics backend for matplotlib";
33 homepage = "https://github.com/jonathf/matplotlib-sixel";
34 license = licenses.bsd3;
35 maintainers = with maintainers; [ GaetanLepage ];