mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
8056f9250c
The setuptools-scm packages gained a setup hook, that sets it to the derivation version automatically, so setting it to that manually has become redundant. This also affects downstream consumers of setuptools-scm, like hatch-vcs or flit-scm.
71 lines
1.1 KiB
Nix
71 lines
1.1 KiB
Nix
{ buildPythonPackage
|
|
, lib
|
|
, fetchFromGitLab
|
|
|
|
, isPy3k
|
|
, isPyPy
|
|
|
|
, openpaperwork-core
|
|
, openpaperwork-gtk
|
|
, paperwork-backend
|
|
, fabulous
|
|
, rich
|
|
, getkey
|
|
, psutil
|
|
, shared-mime-info
|
|
, setuptools-scm
|
|
|
|
, pkgs
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "paperwork-shell";
|
|
inherit (import ./src.nix { inherit fetchFromGitLab; }) 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 ];
|
|
};
|
|
}
|