1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
{
lib,
attrs,
buildPythonPackage,
docstring-parser,
fetchFromGitHub,
hatch-vcs,
hatchling,
markdown,
mkdocs,
pydantic,
pymdown-extensions,
pytest-mock,
pytestCheckHook,
pyyaml,
rich-rst,
rich,
sphinx,
syrupy,
trio,
}:
buildPythonPackage (finalAttrs: {
pname = "cyclopts";
version = "4.10.2";
pyproject = true;
src = fetchFromGitHub {
owner = "BrianPugh";
repo = "cyclopts";
tag = "v${finalAttrs.version}";
hash = "sha256-vlsjhBfI08QMQ8FzM+BogAXbukHhnr4aD8ZmZVicCv0=";
};
build-system = [
hatchling
hatch-vcs
];
dependencies = [
attrs
docstring-parser
rich
rich-rst
];
optional-dependencies = {
trio = [ trio ];
yaml = [ pyyaml ];
docs = [ sphinx ];
mkdocs = [
mkdocs
markdown
pymdown-extensions
];
};
nativeCheckInputs = [
pydantic
pytest-mock
pytestCheckHook
syrupy
]
++ lib.flatten (builtins.attrValues finalAttrs.passthru.optional-dependencies);
pythonImportsCheck = [ "cyclopts" ];
disabledTests = [
# Test requires bash
"test_positional_not_treated_as_command"
# Building docs
"build_succeeds"
];
disabledTestPaths = [
# Tests requires sphinx
"tests/test_sphinx_ext.py"
];
meta = {
description = "Module to create CLIs based on Python type hints";
homepage = "https://github.com/BrianPugh/cyclopts";
changelog = "https://github.com/BrianPugh/cyclopts/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
})
|