46 lines
1 KiB
Nix
46 lines
1 KiB
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, python
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, substituteAll
|
||
|
, libjpeg_turbo
|
||
|
, numpy
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pyturbojpeg";
|
||
|
version = "1.4.1";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
pname = "PyTurboJPEG";
|
||
|
inherit version;
|
||
|
sha256 = "09688a93331281e566569b4d313e1d1a058ca32ccae1a2473847a10e4ca2f2a7";
|
||
|
};
|
||
|
|
||
|
patches = [
|
||
|
(substituteAll {
|
||
|
src = ./lib-path.patch;
|
||
|
libturbojpeg = "${libjpeg_turbo.out}/lib/libturbojpeg${stdenv.hostPlatform.extensions.sharedLibrary}";
|
||
|
})
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
numpy
|
||
|
];
|
||
|
|
||
|
# upstream has no tests, but we want to test whether the library is found
|
||
|
checkPhase = ''
|
||
|
${python.interpreter} -c 'from turbojpeg import TurboJPEG; TurboJPEG()'
|
||
|
'';
|
||
|
|
||
|
pythonImportsCheck = [ "turbojpeg" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "A Python wrapper of libjpeg-turbo for decoding and encoding JPEG image";
|
||
|
homepage = "https://github.com/lilohuang/PyTurboJPEG";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ dotlambda ];
|
||
|
};
|
||
|
}
|