mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 20:34:06 +00:00
python310Packages.camelot: init at 0.11.0 (#222708)
This commit is contained in:
parent
28ae1b44d7
commit
b6dbd73a77
55
pkgs/development/python-modules/camelot/default.nix
Normal file
55
pkgs/development/python-modules/camelot/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user