nixpkgs/pkgs/tools/security/faraday-cli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
871 B
Nix
Raw Normal View History

2021-09-22 15:12:23 +02:00
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "faraday-cli";
version = "2.0.2";
src = fetchFromGitHub {
owner = "infobyte";
repo = pname;
rev = "v${version}";
2022-02-03 23:26:15 +01:00
hash = "sha256-J3YlFsX/maOqWo4ILEMXzIJeQ8vr47ApGGiaBWrUCMs=";
2021-09-22 15:12:23 +02:00
};
propagatedBuildInputs = with python3.pkgs; [
2022-02-03 23:26:15 +01:00
arrow
2021-09-22 15:12:23 +02:00
click
2022-02-03 23:26:15 +01:00
cmd2
2021-09-22 15:12:23 +02:00
colorama
faraday-plugins
jsonschema
2022-02-03 23:26:15 +01:00
log-symbols
packaging
2021-09-22 15:12:23 +02:00
pyyaml
simple-rest-client
spinners
2022-02-03 23:26:15 +01:00
tabulate
2021-09-22 15:12:23 +02:00
termcolor
2022-02-03 23:26:15 +01:00
validators
2021-09-22 15:12:23 +02:00
];
# Tests requires credentials
doCheck = false;
2022-02-03 23:26:15 +01:00
pythonImportsCheck = [
"faraday_cli"
];
2021-09-22 15:12:23 +02: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 ];
};
}