lol

faraday-cli: init at 2.0.2

+48
+46
pkgs/tools/security/faraday-cli/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , python3 4 + }: 5 + 6 + python3.pkgs.buildPythonApplication rec { 7 + pname = "faraday-cli"; 8 + version = "2.0.2"; 9 + 10 + disabled = python3.pythonOlder "3.7"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "infobyte"; 14 + repo = pname; 15 + rev = "v${version}"; 16 + sha256 = "1jq8sim0b6k830lv1qzbrd1mx0nc2x1jq24fbama76gzqlb2axi7"; 17 + }; 18 + 19 + propagatedBuildInputs = with python3.pkgs; [ 20 + click 21 + colorama 22 + faraday-plugins 23 + jsonschema 24 + pyyaml 25 + simple-rest-client 26 + tabulate 27 + validators 28 + spinners 29 + termcolor 30 + cmd2 31 + log-symbols 32 + arrow 33 + ]; 34 + 35 + # Tests requires credentials 36 + doCheck = false; 37 + 38 + pythonImportsCheck = [ "faraday_cli" ]; 39 + 40 + meta = with lib; { 41 + description = "Command Line Interface for Faraday"; 42 + homepage = "https://github.com/infobyte/faraday-cli"; 43 + license = with licenses; [ gpl3Only ]; 44 + maintainers = with maintainers; [ fab ]; 45 + }; 46 + }
+2
pkgs/top-level/all-packages.nix
··· 4980 4980 4981 4981 fabric-installer = callPackage ../tools/games/minecraft/fabric-installer { }; 4982 4982 4983 + faraday-cli = callPackage ../tools/security/faraday-cli { }; 4984 + 4983 4985 fastlane = callPackage ../tools/admin/fastlane { }; 4984 4986 4985 4987 fatresize = callPackage ../tools/filesystems/fatresize {};