depot/third_party/nixpkgs/pkgs/development/python-modules/libsixel/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

32 lines
759 B
Nix

{ buildPythonPackage
, lib
, stdenv
, libsixel
}:
buildPythonPackage rec {
version = libsixel.version;
format = "setuptools";
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${stdenv.hostPlatform.extensions.sharedLibrary}"'
'';
# 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 ];
};
}