2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
2024-07-27 06:49:29 +00:00
|
|
|
setuptools,
|
2024-06-05 15:53:02 +00:00
|
|
|
six,
|
|
|
|
hypothesis,
|
|
|
|
mock,
|
|
|
|
levenshtein,
|
|
|
|
pytestCheckHook,
|
|
|
|
termcolor,
|
|
|
|
pythonOlder,
|
2022-12-28 21:21:41 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "fire";
|
2024-07-27 06:49:29 +00:00
|
|
|
version = "0.6.0";
|
|
|
|
pyproject = true;
|
2022-12-28 21:21:41 +00:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "python-fire";
|
2022-12-28 21:21:41 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2024-07-27 06:49:29 +00:00
|
|
|
hash = "sha256-tBmsy0MuJu0Ei+4lUy/XfKoOU+OuH4xqmjPv/uKVuwg=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
build-system = [ setuptools ];
|
2023-03-08 16:32:21 +00:00
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
dependencies = [
|
2022-12-28 21:21:41 +00:00
|
|
|
six
|
|
|
|
termcolor
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-12-28 21:21:41 +00:00
|
|
|
hypothesis
|
|
|
|
mock
|
2023-01-20 10:41:00 +00:00
|
|
|
levenshtein
|
2022-12-28 21:21:41 +00:00
|
|
|
pytestCheckHook
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
pythonImportsCheck = [ "fire" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Library for automatically generating command line interfaces";
|
2020-04-24 23:36:52 +00:00
|
|
|
longDescription = ''
|
|
|
|
Python Fire is a library for automatically generating command line
|
|
|
|
interfaces (CLIs) from absolutely any Python object.
|
|
|
|
|
|
|
|
* Python Fire is a simple way to create a CLI in Python.
|
|
|
|
|
|
|
|
* Python Fire is a helpful tool for developing and debugging
|
|
|
|
Python code.
|
|
|
|
|
|
|
|
* Python Fire helps with exploring existing code or turning other
|
|
|
|
people's code into a CLI.
|
|
|
|
|
|
|
|
* Python Fire makes transitioning between Bash and Python easier.
|
|
|
|
|
|
|
|
* Python Fire makes using a Python REPL easier by setting up the
|
|
|
|
REPL with the modules and variables you'll need already imported
|
|
|
|
and created.
|
|
|
|
'';
|
2022-12-28 21:21:41 +00:00
|
|
|
homepage = "https://github.com/google/python-fire";
|
|
|
|
changelog = "https://github.com/google/python-fire/releases/tag/v${version}";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ leenaars ];
|
|
|
|
};
|
|
|
|
}
|