571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
66 lines
1.4 KiB
Nix
66 lines
1.4 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, ghostscript
|
|
, imagemagick
|
|
, poppler_utils
|
|
, python3
|
|
, tesseract5
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "invoice2data";
|
|
version = "0.4.4";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "invoice-x";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-pAvkp8xkHYi/7ymbxaT7/Jhu44j2P8emm8GyXC6IBnI=";
|
|
};
|
|
|
|
patches = [
|
|
# https://github.com/invoice-x/invoice2data/pull/522
|
|
(fetchpatch {
|
|
name = "clean-up-build-dependencies.patch";
|
|
url = "https://github.com/invoice-x/invoice2data/commit/ccea3857c7c8295ca51dc24de6cde78774ea7e64.patch";
|
|
hash = "sha256-BhqPW4hWG/EaR3qBv5a68dcvIMrCCT74GdDHr0Mss5Q=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
setuptools-git
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
dateparser
|
|
pdfminer-six
|
|
pillow
|
|
pyyaml
|
|
setuptools
|
|
];
|
|
|
|
makeWrapperArgs = ["--prefix" "PATH" ":" (lib.makeBinPath [
|
|
ghostscript
|
|
imagemagick
|
|
tesseract5
|
|
poppler_utils
|
|
])];
|
|
|
|
# Tests fails even when ran manually on my ubuntu machine !!
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"invoice2data"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Data extractor for PDF invoices";
|
|
mainProgram = "invoice2data";
|
|
homepage = "https://github.com/invoice-x/invoice2data";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ psyanticy ];
|
|
};
|
|
}
|