nixpkgs/pkgs/development/python-modules/libsixel/default.nix
2022-04-23 14:53:40 -04:00

31 lines
681 B
Nix

{ buildPythonPackage
, lib
, libsixel
}:
buildPythonPackage rec {
version = libsixel.version;
pname = "libsixel";
src = libsixel.src;
sourceRoot = "${src.name}/python";
prePatch = ''
substituteInPlace libsixel/__init__.py --replace \
'from ctypes.util import find_library' \
'find_library = lambda _x: "${lib.getLib libsixel}/lib/libsixel.so"'
'';
# no tests
doCheck = false;
pythonImportsCheck = [ "libsixel" ];
meta = with lib; {
description = "SIXEL graphics encoder/decoder implementation";
homepage = "https://github.com/libsixel/libsixel";
license = licenses.mit;
maintainers = with maintainers; [ rmcgibbo ];
};
}