2016-05-19 23:35:45 +02:00
|
|
|
{ stdenv, fetchFromGitHub, pythonPackages, httpie }:
|
|
|
|
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
2017-08-15 14:53:17 +02:00
|
|
|
version = "0.10.2";
|
2016-05-19 23:35:45 +02:00
|
|
|
name = "http-prompt";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
repo = "http-prompt";
|
|
|
|
owner = "eliangcs";
|
2017-08-15 14:53:17 +02:00
|
|
|
sha256 = "0c03n1ll61zd4f60kzih3skl0hspck5hhpcf74h5l6v5as7qdbi2";
|
2016-05-19 23:35:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
|
|
click
|
|
|
|
httpie
|
|
|
|
parsimonious
|
|
|
|
prompt_toolkit
|
|
|
|
pygments
|
|
|
|
six
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An interactive command-line HTTP client featuring autocomplete and syntax highlighting";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://github.com/eliangcs/http-prompt;
|
2016-05-19 23:35:45 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
|
|
|
platforms = platforms.linux; # can only test on linux
|
|
|
|
};
|
|
|
|
}
|