52 lines
1016 B
Nix
52 lines
1016 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "faraday-cli";
|
|
version = "2.1.9";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "infobyte";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-8D1oYYqf0R41DPYtorcvykZ99p6P6Diwe7PgEN378pU=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
arrow
|
|
click
|
|
cmd2
|
|
colorama
|
|
faraday-plugins
|
|
jsonschema
|
|
log-symbols
|
|
luddite
|
|
packaging
|
|
pyyaml
|
|
py-sneakers
|
|
simple-rest-client
|
|
spinners
|
|
tabulate
|
|
termcolor
|
|
validators
|
|
];
|
|
|
|
# Tests requires credentials
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"faraday_cli"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Command Line Interface for Faraday";
|
|
homepage = "https://github.com/infobyte/faraday-cli";
|
|
changelog = "https://github.com/infobyte/faraday-cli/releases/tag/${version}";
|
|
license = with licenses; [ gpl3Only ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|