a981af6f1e
Diff: https://github.com/BrianPugh/cyclopts/compare/v4.4.0...v4.4.1 Changelog: https://github.com/BrianPugh/cyclopts/releases/tag/v4.4.1
88 lines
1.5 KiB
Nix
88 lines
1.5 KiB
Nix
{
|
|
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 rec {
|
|
pname = "cyclopts";
|
|
version = "4.4.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BrianPugh";
|
|
repo = "cyclopts";
|
|
tag = "v${version}";
|
|
hash = "sha256-kp/mnqa2difEA3s1jtXF1fDluQhLCJ4f6rFRruRbE9k=";
|
|
};
|
|
|
|
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.concatAttrValues 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/${src.tag}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|