blob: 0676e645e4e87767bb4d571a02f9c6f1298265d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
cryptography,
charset-normalizer,
pytestCheckHook,
setuptools,
setuptools-scm,
ocrmypdf,
}:
buildPythonPackage rec {
pname = "pdfminer-six";
version = "20251230";
pyproject = true;
src = fetchFromGitHub {
owner = "pdfminer";
repo = "pdfminer.six";
tag = version;
hash = "sha256-//rcpcEn4lYYEkji2bo801AWj1ThEZPRuq1hNYYyVVk=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
charset-normalizer
cryptography
];
postInstall = ''
for file in "$out/bin/"*.py; do
mv "$file" "''${file%.py}"
done
'';
pythonImportsCheck = [
"pdfminer"
"pdfminer.high_level"
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# The binary file samples/contrib/issue-1004-indirect-mediabox.pdf is
# stripped from fix-dereference-MediaBox.patch.
"test_contrib_issue_1004_mediabox"
];
passthru = {
tests = {
inherit ocrmypdf;
};
};
meta = {
changelog = "https://github.com/pdfminer/pdfminer.six/blob/${src.rev}/CHANGELOG.md";
description = "PDF parser and analyzer";
homepage = "https://github.com/pdfminer/pdfminer.six";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ psyanticy ];
};
}
|