1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 poetry-core,
6}:
7
8buildPythonPackage rec {
9 pname = "paperbush";
10 version = "0.2.0";
11 pyproject = true;
12
13 src = fetchFromGitHub {
14 owner = "trag1c";
15 repo = "paperbush";
16 tag = version;
17 hash = "sha256-wJV+2aGK9eSw2iToiHh0I7vYAuND2pRYGhnf7CB1a+0=";
18 };
19
20 build-system = [ poetry-core ];
21 pythonImportsCheck = [ "paperbush" ];
22
23 meta = {
24 changelog = "https://github.com/trag1c/paperbush/blob/${src.rev}/CHANGELOG.md";
25 description = "Super concise argument parsing tool for Python";
26 license = lib.licenses.mit;
27 maintainers = with lib.maintainers; [ sigmanificient ];
28 };
29}