nixpkgs/pkgs/tools/security/faraday-cli/default.nix
2022-09-15 11:07:44 +00:00

51 lines
933 B
Nix

{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "faraday-cli";
version = "2.1.7";
format = "setuptools";
src = fetchFromGitHub {
owner = "infobyte";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-kZqJVJ6XrCC3iDSTJP8AmIs4WkxiAFimFIexl0L/HT0=";
};
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";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}