depot/third_party/nixpkgs/pkgs/development/python-modules/python-djvulibre/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

59 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
cython,
djvulibre,
ghostscript_headless,
packaging,
pkg-config,
requests,
setuptools,
unittestCheckHook,
wheel,
}:
buildPythonPackage rec {
pname = "python-djvulibre";
version = "0.9.0";
pyproject = true;
src = fetchFromGitHub {
owner = "FriedrichFroebel";
repo = "python-djvulibre";
rev = version;
hash = "sha256-OrOZFvzDEBwBmIc+i3LjNTh6K2vhe6NWtSJrFTSkrgA=";
};
nativeBuildInputs = [
cython
packaging
pkg-config
setuptools
wheel
];
buildInputs = [
djvulibre
ghostscript_headless
];
preCheck = ''
rm -rf djvu
'';
nativeCheckInputs = [ unittestCheckHook ];
unittestFlagsArray = [
"tests"
"-v"
];
meta = with lib; {
description = "Python support for the DjVu image format";
homepage = "https://github.com/FriedrichFroebel/python-djvulibre";
license = licenses.gpl2Only;
changelog = "https://github.com/FriedrichFroebel/python-djvulibre/releases/tag/${version}";
maintainers = with maintainers; [ dansbandit ];
};
}