Merge pull request #315989 from Sigmanificient/paperbush

This commit is contained in:
Sandro 2024-06-05 16:58:31 +02:00 committed by GitHub
commit 9e47c3a6bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 31 additions and 0 deletions

@ -0,0 +1,29 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
}:
buildPythonPackage rec {
pname = "paperbush";
version = "0.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "trag1c";
repo = "paperbush";
rev = "refs/tags/${version}";
hash = "sha256-wJV+2aGK9eSw2iToiHh0I7vYAuND2pRYGhnf7CB1a+0=";
};
build-system = [ poetry-core ];
pythonImportsCheck = [ "paperbush" ];
meta = with lib; {
changelog = "https://github.com/trag1c/paperbush/blob/${src.rev}/CHANGELOG.md";
description = "A super concise argument parsing tool for Python";
license = licenses.mit;
maintainers = with maintainers; [ sigmanificient ];
};
}

@ -9458,6 +9458,8 @@ self: super: with self; {
panphon = callPackage ../development/python-modules/panphon { };
paperbush = callPackage ../development/python-modules/paperbush { };
papermill = callPackage ../development/python-modules/papermill { };
openpaperwork-core = callPackage ../applications/office/paperwork/openpaperwork-core.nix { };