6 buildPythonPackage rec {
7 version = libsixel.version;
11 sourceRoot = "${src.name}/python";
14 substituteInPlace libsixel/__init__.py --replace \
15 'from ctypes.util import find_library' \
16 'find_library = lambda _x: "${lib.getLib libsixel}/lib/libsixel.so"'
22 pythonImportsCheck = [ "libsixel" ];
25 description = "SIXEL graphics encoder/decoder implementation";
26 homepage = "https://github.com/libsixel/libsixel";
27 license = licenses.mit;
28 maintainers = with maintainers; [ rmcgibbo ];