mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
d1f9cadf4c
changelog: 620eb58061
93 lines
1.5 KiB
Nix
93 lines
1.5 KiB
Nix
{ buildPythonPackage
|
|
, lib
|
|
, fetchFromGitLab
|
|
, pyenchant
|
|
, scikit-learn
|
|
, pypillowfight
|
|
, pycountry
|
|
, whoosh
|
|
, termcolor
|
|
, pygobject3
|
|
, pyocr
|
|
, natsort
|
|
, libinsane
|
|
, distro
|
|
, openpaperwork-core
|
|
, openpaperwork-gtk
|
|
, psutil
|
|
, gtk3
|
|
, poppler_gi
|
|
, gettext
|
|
, which
|
|
, shared-mime-info
|
|
, libreoffice
|
|
, unittestCheckHook
|
|
, setuptools-scm
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "paperwork-backend";
|
|
inherit (import ./src.nix { inherit fetchFromGitLab; }) version src;
|
|
format = "pyproject";
|
|
|
|
sourceRoot = "${src.name}/paperwork-backend";
|
|
|
|
patches = [
|
|
# disables a flaky test https://gitlab.gnome.org/World/OpenPaperwork/paperwork/-/issues/1035#note_1493700
|
|
./flaky_test.patch
|
|
];
|
|
|
|
patchFlags = [ "-p2" ];
|
|
|
|
postPatch = ''
|
|
chmod a+w -R ..
|
|
patchShebangs ../tools
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
distro
|
|
gtk3
|
|
libinsane
|
|
natsort
|
|
openpaperwork-core
|
|
pyenchant
|
|
pycountry
|
|
pygobject3
|
|
pyocr
|
|
pypillowfight
|
|
poppler_gi
|
|
scikit-learn
|
|
termcolor
|
|
whoosh
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
shared-mime-info
|
|
which
|
|
setuptools-scm
|
|
];
|
|
|
|
preBuild = ''
|
|
make l10n_compile
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
libreoffice
|
|
openpaperwork-gtk
|
|
psutil
|
|
unittestCheckHook
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Backend part of Paperwork (Python API, no UI)";
|
|
homepage = "https://openpaper.work";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ aszlig symphorien ];
|
|
};
|
|
}
|