1 { lib, fetchFromGitHub, python3Packages, httpie }:
3 python3Packages.buildPythonApplication rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-e4GyuxCeXYNsnBXyjIJz1HqSrqTGan0N3wxUFS+Hvkw=";
14 propagatedBuildInputs = with python3Packages; [
18 (python.pkgs.callPackage ../../../development/python-modules/prompt-toolkit/1.nix {})
25 $out/bin/${pname} --version | grep -q "${version}"
29 description = "Interactive command-line HTTP client featuring autocomplete and syntax highlighting";
30 mainProgram = "http-prompt";
31 homepage = "https://github.com/eliangcs/http-prompt";
32 license = licenses.mit;
33 maintainers = with maintainers; [ matthiasbeyer ];
34 platforms = platforms.linux ++ platforms.darwin;