depot/third_party/nixpkgs/pkgs/development/python-modules/tabula-py/default.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

62 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, distro
, fetchFromGitHub
, jdk
, numpy
, pandas
, pytestCheckHook
, pythonOlder
, setuptools-scm
}:
buildPythonPackage rec {
pname = "tabula-py";
version = "2.5.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "chezou";
repo = pname;
rev = "v${version}";
hash = "sha256-Dfi6LzrLDz9VVDmbeK1dEaWuQosD4tvAH13Q4Mp3smA=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
distro
numpy
pandas
];
checkInputs = [
jdk
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"
];
meta = with lib; {
description = "Module to extract table from PDF into pandas DataFrame";
homepage = "https://github.com/chezou/tabula-py";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}