Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions pkgs/development/python-modules/httpie/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ buildPythonPackage rec {
requests-toolbelt
setuptools
rich
pysocks
];
] ++ requests.optional-dependencies.socks;


checkInputs = [
pytest-httpbin
Expand Down Expand Up @@ -91,6 +91,19 @@ buildPythonPackage rec {
disabledTests = [
# flaky
"test_stdin_read_warning"
# Re-evaluate those tests with the next release
"test_duplicate_keys_support_from_response"
"test_invalid_xml"
"test_json_formatter_with_body_preceded_by_non_json_data"
"test_pretty_options_with_and_without_stream_with_converter"
"test_response_mime_overwrite"
"test_terminal_output_response_charset_detection"
"test_terminal_output_response_charset_override"
"test_terminal_output_response_content_type_charset_with_stream"
"test_terminal_output_response_content_type_charset"
"test_valid_xml"
"test_xml_format_options"
"test_xml_xhtm"
] ++ lib.optionals stdenv.isDarwin [
# flaky
"test_daemon_runner"
Expand All @@ -99,6 +112,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "A command line HTTP client whose goal is to make CLI human-friendly";
homepage = "https://httpie.org/";
changelog = "https://github.com/httpie/httpie/blob/${version}/CHANGELOG.md";
license = licenses.bsd3;
maintainers = with maintainers; [ antono relrod schneefux SuperSandro2000 ];
};
Expand Down