My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/security/faraday-cli/default.nix

47 lines
871 B

{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "faraday-cli";
version = "2.0.2";
src = fetchFromGitHub {
owner = "infobyte";
repo = pname;
rev = "v${version}";
hash = "sha256-J3YlFsX/maOqWo4ILEMXzIJeQ8vr47ApGGiaBWrUCMs=";
};
propagatedBuildInputs = with python3.pkgs; [
arrow
click
cmd2
colorama
faraday-plugins
jsonschema
log-symbols
packaging
pyyaml
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 ];
};
}