ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / libsixel / default.nix
blob7760bb867479321e5cb8bc1bb9260855ad0c3404
1 { buildPythonPackage
2 , lib
3 , libsixel
4 }:
6 buildPythonPackage rec {
7   version = libsixel.version;
8   pname = "libsixel";
10   src = libsixel.src;
11   sourceRoot = "${src.name}/python";
13   prePatch = ''
14     substituteInPlace libsixel/__init__.py --replace \
15       'from ctypes.util import find_library' \
16       'find_library = lambda _x: "${lib.getLib libsixel}/lib/libsixel.so"'
17   '';
19   # no tests
20   doCheck = false;
22   pythonImportsCheck = [ "libsixel" ];
24   meta = with lib; {
25     description = "SIXEL graphics encoder/decoder implementation";
26     homepage = "https://github.com/libsixel/libsixel";
27     license = licenses.mit;
28     maintainers = with maintainers; [ rmcgibbo ];
29   };