2021-09-23 15:35:13 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, python3
|
|
|
|
}:
|
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
|
|
pname = "faraday-cli";
|
2022-08-12 12:06:08 +00:00
|
|
|
version = "2.1.6";
|
2022-06-16 17:23:12 +00:00
|
|
|
format = "setuptools";
|
2021-09-23 15:35:13 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "infobyte";
|
|
|
|
repo = pname;
|
2022-08-12 12:06:08 +00:00
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
hash = "sha256-ofL3tRYV2bwF+RYGoLpg/UQPg9HwrCepWAQxXiJkV2E=";
|
2021-09-23 15:35:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
2022-02-10 20:34:41 +00:00
|
|
|
arrow
|
2021-09-23 15:35:13 +00:00
|
|
|
click
|
2022-02-10 20:34:41 +00:00
|
|
|
cmd2
|
2021-09-23 15:35:13 +00:00
|
|
|
colorama
|
|
|
|
faraday-plugins
|
|
|
|
jsonschema
|
2022-02-10 20:34:41 +00:00
|
|
|
log-symbols
|
2022-06-16 17:23:12 +00:00
|
|
|
luddite
|
2022-02-10 20:34:41 +00:00
|
|
|
packaging
|
2021-09-23 15:35:13 +00:00
|
|
|
pyyaml
|
2022-06-16 17:23:12 +00:00
|
|
|
py-sneakers
|
2021-09-23 15:35:13 +00:00
|
|
|
simple-rest-client
|
|
|
|
spinners
|
2022-02-10 20:34:41 +00:00
|
|
|
tabulate
|
2021-09-23 15:35:13 +00:00
|
|
|
termcolor
|
2022-02-10 20:34:41 +00:00
|
|
|
validators
|
2021-09-23 15:35:13 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# Tests requires credentials
|
|
|
|
doCheck = false;
|
|
|
|
|
2022-02-10 20:34:41 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"faraday_cli"
|
|
|
|
];
|
2021-09-23 15:35:13 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Command Line Interface for Faraday";
|
|
|
|
homepage = "https://github.com/infobyte/faraday-cli";
|
|
|
|
license = with licenses; [ gpl3Only ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|