Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
75 lines
1.1 KiB
Nix
75 lines
1.1 KiB
Nix
{
|
|
buildPythonPackage,
|
|
lib,
|
|
callPackage,
|
|
|
|
isPy3k,
|
|
isPyPy,
|
|
|
|
openpaperwork-core,
|
|
openpaperwork-gtk,
|
|
paperwork-backend,
|
|
fabulous,
|
|
rich,
|
|
getkey,
|
|
psutil,
|
|
shared-mime-info,
|
|
setuptools-scm,
|
|
|
|
pkgs,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "paperwork-shell";
|
|
inherit (callPackage ./src.nix { }) version src;
|
|
format = "pyproject";
|
|
|
|
sourceRoot = "${src.name}/paperwork-shell";
|
|
|
|
# Python 2.x is not supported.
|
|
disabled = !isPy3k && !isPyPy;
|
|
|
|
patchPhase = ''
|
|
chmod a+w -R ..
|
|
patchShebangs ../tools
|
|
'';
|
|
propagatedBuildInputs = [
|
|
openpaperwork-core
|
|
paperwork-backend
|
|
fabulous
|
|
getkey
|
|
psutil
|
|
rich
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
shared-mime-info
|
|
openpaperwork-gtk
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkgs.gettext
|
|
pkgs.which
|
|
setuptools-scm
|
|
];
|
|
|
|
preBuild = ''
|
|
make l10n_compile
|
|
'';
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
"$out/bin/paperwork-cli" chkdeps
|
|
'';
|
|
|
|
meta = {
|
|
description = "CLI for Paperwork";
|
|
homepage = "https://openpaper.work/";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [
|
|
aszlig
|
|
symphorien
|
|
];
|
|
};
|
|
}
|