Merge pull request #158055 from fabaff/bump-faraday-plugins

python3Packages.faraday-plugins: 1.5.10 -> 1.6.0
This commit is contained in:
Fabian Affolter 2022-02-04 08:30:03 +01:00 committed by GitHub
commit df05bac08c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 11 deletions

View File

@ -16,14 +16,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "faraday-plugins"; pname = "faraday-plugins";
version = "1.5.10"; version = "1.6.0";
format = "setuptools"; format = "setuptools";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "infobyte"; owner = "infobyte";
repo = "faraday_plugins"; repo = "faraday_plugins";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-Xj1Ibl+xDN3uCww54StUBCc+w/iPMdbWucRqdb+GHVI="; sha256 = "sha256-mvYbX8puqcT9kl1Abi785ptmmg9CxKZVTO6gPpk4sKU=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [

View File

@ -7,35 +7,36 @@ python3.pkgs.buildPythonApplication rec {
pname = "faraday-cli"; pname = "faraday-cli";
version = "2.0.2"; version = "2.0.2";
disabled = python3.pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "infobyte"; owner = "infobyte";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "1jq8sim0b6k830lv1qzbrd1mx0nc2x1jq24fbama76gzqlb2axi7"; hash = "sha256-J3YlFsX/maOqWo4ILEMXzIJeQ8vr47ApGGiaBWrUCMs=";
}; };
propagatedBuildInputs = with python3.pkgs; [ propagatedBuildInputs = with python3.pkgs; [
arrow
click click
cmd2
colorama colorama
faraday-plugins faraday-plugins
jsonschema jsonschema
log-symbols
packaging
pyyaml pyyaml
simple-rest-client simple-rest-client
tabulate
validators
spinners spinners
tabulate
termcolor termcolor
cmd2 validators
log-symbols
arrow
]; ];
# Tests requires credentials # Tests requires credentials
doCheck = false; doCheck = false;
pythonImportsCheck = [ "faraday_cli" ]; pythonImportsCheck = [
"faraday_cli"
];
meta = with lib; { meta = with lib; {
description = "Command Line Interface for Faraday"; description = "Command Line Interface for Faraday";