mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
43 lines
961 B
Nix
43 lines
961 B
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
pandoc,
|
|
installShellFiles,
|
|
}:
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "autotrash";
|
|
version = "0.4.7";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bneijt";
|
|
repo = "autotrash";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-qMU3jjBL5+fd9vKX5BIqES5AM8D/54aBOmdHFiBtfEo=";
|
|
};
|
|
|
|
build-system = [ python3Packages.poetry-core ];
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
pandoc
|
|
];
|
|
postBuild = "make -C doc autotrash.1";
|
|
postInstall = "installManPage doc/autotrash.1";
|
|
|
|
pythonImportsCheck = [ "autotrash" ];
|
|
nativeCheckInputs = [ python3Packages.pytestCheckHook ];
|
|
|
|
meta = {
|
|
description = "Tool to automatically purge old trashed files";
|
|
license = lib.licenses.gpl3Plus;
|
|
homepage = "https://bneijt.nl/pr/autotrash";
|
|
maintainers = with lib.maintainers; [
|
|
sigmanificient
|
|
mithicspirit
|
|
];
|
|
mainProgram = "autotrash";
|
|
};
|
|
}
|