Merge pull request #146867 from fabaff/bump-invoice2data
invoice2data: 0.2.93 -> 0.3.6
This commit is contained in:
commit
010707f668
1 changed files with 41 additions and 8 deletions
|
@ -1,21 +1,54 @@
|
||||||
{ lib, python3Packages, xpdf, imagemagick, tesseract }:
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, imagemagick
|
||||||
|
, python3
|
||||||
|
, tesseract
|
||||||
|
, xpdf
|
||||||
|
}:
|
||||||
|
|
||||||
python3Packages.buildPythonPackage rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "invoice2data";
|
pname = "invoice2data";
|
||||||
version = "0.2.93";
|
version = "0.3.6";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
src = python3Packages.fetchPypi {
|
src = fetchFromGitHub {
|
||||||
inherit pname version;
|
owner = "invoice-x";
|
||||||
sha256 = "1phz0a8jxg074k0im7shrrdfvdps7bn1fa4zwcf8q3sa2iig26l4";
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-t1jgLyKtQsLINlnkCdSbVfTM6B/EiD1yGtx9UHjyZVE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
makeWrapperArgs = ["--prefix" "PATH" ":" (lib.makeBinPath [ imagemagick xpdf tesseract ]) ];
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
|
setuptools-git
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [ unidecode dateparser pyyaml pillow chardet pdfminer ];
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
chardet
|
||||||
|
dateparser
|
||||||
|
pdfminer
|
||||||
|
pillow
|
||||||
|
pyyaml
|
||||||
|
unidecode
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace setup.cfg \
|
||||||
|
--replace "pytest-runner" ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
makeWrapperArgs = ["--prefix" "PATH" ":" (lib.makeBinPath [
|
||||||
|
imagemagick
|
||||||
|
tesseract
|
||||||
|
xpdf
|
||||||
|
])];
|
||||||
|
|
||||||
# Tests fails even when ran manually on my ubuntu machine !!
|
# Tests fails even when ran manually on my ubuntu machine !!
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"invoice2data"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Data extractor for PDF invoices";
|
description = "Data extractor for PDF invoices";
|
||||||
homepage = "https://github.com/invoice-x/invoice2data";
|
homepage = "https://github.com/invoice-x/invoice2data";
|
||||||
|
|
Loading…
Reference in a new issue