Merge pull request #142188 from fabaff/bump-httpie

authored by

Sandro and committed by
GitHub
ab57b395 c350adaa

+5 -2
+5 -2
pkgs/tools/networking/httpie/default.nix
··· 7 7 8 8 python3Packages.buildPythonApplication rec { 9 9 pname = "httpie"; 10 - version = "2.5.0"; 10 + version = "2.6.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "httpie"; 14 14 repo = "httpie"; 15 15 rev = version; 16 - sha256 = "sha256-GwwZLXf9CH024gKfWsYPnr/oqQcxR/lQIToFRh59B+E="; 16 + sha256 = "1y77dg27dn6bajwp3w6qvw1ls5wfhd1j1788l3fjhxg7j4qjki4g"; 17 17 }; 18 18 19 19 nativeBuildInputs = [ ··· 22 22 ]; 23 23 24 24 propagatedBuildInputs = with python3Packages; [ 25 + charset-normalizer 25 26 defusedxml 26 27 pygments 27 28 requests ··· 59 60 "test_verbose_chunked" 60 61 "test_multipart_chunked" 61 62 "test_request_body_from_file_by_path_chunked" 63 + # Part of doctest 64 + "httpie.encoding.detect_encoding" 62 65 ]; 63 66 64 67 pythonImportsCheck = [ "httpie" ];