159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
81 lines
1.6 KiB
Nix
81 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
ghostscript,
|
|
jupyterlab,
|
|
nbexec,
|
|
pandas,
|
|
pandas-stubs,
|
|
pdfminer-six,
|
|
pillow,
|
|
pytest-parallel,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
types-pillow,
|
|
wand,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pdfplumber";
|
|
version = "0.11.4";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jsvine";
|
|
repo = "pdfplumber";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-62S5DMQwSgehl0BcjeRaTocko8xg72pQQ5YLoL3+QbU=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.cfg \
|
|
--replace "--cov=pdfplumber --cov-report xml:coverage.xml --cov-report term" ""
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
pdfminer-six
|
|
pillow
|
|
wand
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
ghostscript
|
|
jupyterlab
|
|
nbexec
|
|
pandas
|
|
pandas-stubs
|
|
pytest-parallel
|
|
pytestCheckHook
|
|
types-pillow
|
|
];
|
|
|
|
pythonImportsCheck = [ "pdfplumber" ];
|
|
|
|
disabledTests = [
|
|
# flaky
|
|
"test__repr_png_"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Tests requires pypdfium2
|
|
"tests/test_display.py"
|
|
# Tests requires pypdfium2
|
|
"tests/test_issues.py"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Plumb a PDF for detailed information about each char, rectangle, line, et cetera — and easily extract text and tables";
|
|
mainProgram = "pdfplumber";
|
|
homepage = "https://github.com/jsvine/pdfplumber";
|
|
changelog = "https://github.com/jsvine/pdfplumber/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ happysalada ];
|
|
};
|
|
}
|