mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-13 11:30:35 +08:00
Diff: https://github.com/BrianPugh/cyclopts/compare/refs/tags/v3.10.0...v3.10.1 Changelog: https://github.com/BrianPugh/cyclopts/releases/tag/v3.10.1
70 lines
1.2 KiB
Nix
70 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
attrs,
|
|
buildPythonPackage,
|
|
docstring-parser,
|
|
fetchFromGitHub,
|
|
importlib-metadata,
|
|
poetry-core,
|
|
poetry-dynamic-versioning,
|
|
pydantic,
|
|
pytest-mock,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
pyyaml,
|
|
rich,
|
|
rich-rst,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cyclopts";
|
|
version = "3.10.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BrianPugh";
|
|
repo = "cyclopts";
|
|
tag = "v${version}";
|
|
hash = "sha256-OJpAY0h3MEbzm4Z3MExQjPM8RCpGW8moWLMKSvClRmw=";
|
|
};
|
|
|
|
build-system = [
|
|
poetry-core
|
|
poetry-dynamic-versioning
|
|
];
|
|
|
|
dependencies = [
|
|
attrs
|
|
docstring-parser
|
|
importlib-metadata
|
|
rich
|
|
rich-rst
|
|
typing-extensions
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pydantic
|
|
pytest-mock
|
|
pytestCheckHook
|
|
pyyaml
|
|
];
|
|
|
|
pythonImportsCheck = [ "cyclopts" ];
|
|
|
|
disabledTests = [
|
|
# Assertion error
|
|
"test_pydantic_error_msg"
|
|
];
|
|
|
|
meta = with lib; {
|
|
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 = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|