nixpkgs/pkgs/tools/networking/httpie/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

81 lines
1.6 KiB
Nix
Raw Normal View History

2021-09-27 10:40:29 +00:00
{ lib
, fetchFromGitHub
, installShellFiles
2022-03-16 09:12:26 +00:00
, python3
2021-09-27 10:40:29 +00:00
, pandoc
}:
2022-03-16 09:12:26 +00:00
python3.pkgs.buildPythonApplication rec {
2019-08-30 03:02:24 +00:00
pname = "httpie";
2022-03-16 09:12:26 +00:00
version = "3.1.0";
format = "setuptools";
2019-09-23 14:56:01 +00:00
src = fetchFromGitHub {
2021-02-08 10:34:19 +00:00
owner = "httpie";
2019-09-23 14:56:01 +00:00
repo = "httpie";
rev = version;
2022-03-16 09:12:26 +00:00
hash = "sha256-x7Zucb2i8D4Xbn77eBzSxOAcc2fGg5MFKFiyJhytQ0s=";
};
2021-09-27 10:40:29 +00:00
nativeBuildInputs = [
installShellFiles
pandoc
];
2019-09-23 14:56:01 +00:00
2022-03-16 09:12:26 +00:00
propagatedBuildInputs = with python3.pkgs; [
2021-10-19 09:21:23 +00:00
charset-normalizer
2021-09-27 10:40:29 +00:00
defusedxml
2022-01-24 09:02:44 +00:00
multidict
2021-09-27 10:40:29 +00:00
pygments
requests
requests-toolbelt
setuptools
];
2021-02-08 10:34:19 +00:00
2022-03-16 09:12:26 +00:00
checkInputs = with python3.pkgs; [
2019-09-23 14:56:01 +00:00
mock
pytest
pytest-httpbin
2022-03-16 09:12:26 +00:00
pytest-lazy-fixture
2019-09-23 14:56:01 +00:00
pytestCheckHook
2021-09-27 10:40:29 +00:00
responses
2019-09-23 14:56:01 +00:00
];
postInstall = ''
2020-03-02 00:16:54 +00:00
# install completions
2021-09-27 10:40:29 +00:00
installShellCompletion --bash \
--name http.bash extras/httpie-completion.bash
installShellCompletion --fish \
--name http.fish extras/httpie-completion.fish
# convert the docs/README.md file
pandoc --standalone -f markdown -t man docs/README.md -o docs/http.1
installManPage docs/http.1
'';
2021-09-27 10:40:29 +00:00
pytestFlagsArray = [
"httpie"
"tests"
];
2021-09-27 10:40:29 +00:00
disabledTests = [
"test_chunked"
"test_verbose_chunked"
"test_multipart_chunked"
"test_request_body_from_file_by_path_chunked"
2021-10-19 09:21:23 +00:00
# Part of doctest
"httpie.encoding.detect_encoding"
2021-09-27 10:40:29 +00:00
];
2022-03-16 09:12:26 +00:00
pythonImportsCheck = [
"httpie"
];
2021-02-08 10:34:19 +00:00
meta = with lib; {
2012-12-28 23:09:01 +00:00
description = "A command line HTTP client whose goal is to make CLI human-friendly";
homepage = "https://httpie.org/";
2021-02-08 10:34:19 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ antono relrod schneefux SuperSandro2000 ];
};
}