mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
efc0501a30
Diff: https://github.com/BrianPugh/cyclopts/compare/refs/tags/v3.1.1...v3.1.2 Changelog: https://github.com/BrianPugh/cyclopts/releases/tag/v3.1.2
65 lines
1.2 KiB
Nix
65 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.1.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BrianPugh";
|
|
repo = "cyclopts";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-5LJSo7DlzId0gd8Egv+JAbLk59tSl2HbwjyGm0qy5nI=";
|
|
};
|
|
|
|
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" ];
|
|
|
|
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/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|