python310Packages.camelot: init at 0.11.0 (#222708)

This commit is contained in:
2gn 2023-06-12 08:24:43 +09:00 committed by GitHub
parent 28ae1b44d7
commit b6dbd73a77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,55 @@
{ lib
, stdenv
, buildPythonPackage
, chardet
, openpyxl
, charset-normalizer
, fetchPypi
, fetchpatch
, pythonOlder
, pandas
, tabulate
, click
, pdfminer
, pypdf
, opencv3
}:
buildPythonPackage rec {
pname = "camelot-py";
version = "0.11.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-l6fZBtaF5AWaSlSaY646UfCrcqPIJlV/hEPGWhGB3+Y=";
};
propagatedBuildInputs = [
charset-normalizer
chardet
pandas
tabulate
click
pdfminer
openpyxl
pypdf
opencv3
];
doCheck = false;
pythonImportsCheck = [
"camelot"
];
meta = with lib; {
description = "A Python library to extract tabular data from PDFs";
homepage = "http://camelot-py.readthedocs.io";
changelog = "https://github.com/camelot-dev/camelot/blob/v${version}/HISTORY.md";
license = licenses.mit;
maintainers = with maintainers; [ _2gn ];
};
}

View File

@ -1633,6 +1633,8 @@ self: super: with self; {
canopen = callPackage ../development/python-modules/canopen { };
camelot = callPackage ../development/python-modules/camelot { };
capstone = callPackage ../development/python-modules/capstone {
inherit (pkgs) capstone;
};