blob: 7a346370cecb307bcf66df2386d59c7b8d8366f2 (
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
68
69
70
|
{
lib,
buildPythonPackage,
distro,
fetchFromGitHub,
jre,
numpy,
pandas,
pytestCheckHook,
setuptools,
setuptools-scm,
jpype1,
}:
buildPythonPackage rec {
pname = "tabula-py";
version = "2.10.0";
pyproject = true;
src = fetchFromGitHub {
owner = "chezou";
repo = "tabula-py";
tag = "v${version}";
hash = "sha256-PQbwm9ho3XtpmZ7N7ASkrV8gk9Jom+yQKlt2fUa948s=";
};
postPatch = ''
substituteInPlace tabula/backend.py \
--replace-fail '"java"' '"${lib.getExe jre}"'
'';
build-system = [
setuptools
setuptools-scm
];
buildInputs = [ jre ];
dependencies = [
distro
numpy
pandas
jpype1
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "tabula" ];
disabledTests = [
# Tests require network access
"test_convert_remote_file"
"test_read_pdf_with_remote_template"
"test_read_remote_pdf"
"test_read_remote_pdf_with_custom_user_agent"
# not sure what it checks
# probably related to jpype, but we use subprocess instead
# https://github.com/chezou/tabula-py/issues/352#issuecomment-1730791540
# Failed: DID NOT RAISE <class 'RuntimeError'>
"test_read_pdf_with_silent_true"
];
meta = {
description = "Module to extract table from PDF into pandas DataFrame";
homepage = "https://github.com/chezou/tabula-py";
changelog = "https://github.com/chezou/tabula-py/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|