From 7464f78b3672c34b40a2d8a7f75eaceac759a951 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 19 Oct 2021 11:21:23 +0200 Subject: [PATCH] httpie: 2.5.0 -> 2.6.0 --- pkgs/tools/networking/httpie/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/httpie/default.nix b/pkgs/tools/networking/httpie/default.nix index e81706a34359..8e289b7bab11 100644 --- a/pkgs/tools/networking/httpie/default.nix +++ b/pkgs/tools/networking/httpie/default.nix @@ -7,13 +7,13 @@ python3Packages.buildPythonApplication rec { pname = "httpie"; - version = "2.5.0"; + version = "2.6.0"; src = fetchFromGitHub { owner = "httpie"; repo = "httpie"; rev = version; - sha256 = "sha256-GwwZLXf9CH024gKfWsYPnr/oqQcxR/lQIToFRh59B+E="; + sha256 = "1y77dg27dn6bajwp3w6qvw1ls5wfhd1j1788l3fjhxg7j4qjki4g"; }; nativeBuildInputs = [ @@ -22,6 +22,7 @@ python3Packages.buildPythonApplication rec { ]; propagatedBuildInputs = with python3Packages; [ + charset-normalizer defusedxml pygments requests @@ -59,6 +60,8 @@ python3Packages.buildPythonApplication rec { "test_verbose_chunked" "test_multipart_chunked" "test_request_body_from_file_by_path_chunked" + # Part of doctest + "httpie.encoding.detect_encoding" ]; pythonImportsCheck = [ "httpie" ];