2019-11-16 04:34:53 +00:00
|
|
|
{ stdenv, fetchFromGitHub, python3Packages, httpie }:
|
2016-05-19 21:35:45 +00:00
|
|
|
|
2019-11-16 04:34:53 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-05-28 12:59:57 +00:00
|
|
|
pname = "http-prompt";
|
2018-11-19 14:14:37 +00:00
|
|
|
version = "1.0.0";
|
2016-05-19 21:35:45 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
repo = "http-prompt";
|
|
|
|
owner = "eliangcs";
|
2018-11-19 14:14:37 +00:00
|
|
|
sha256 = "0kngz2izcqjphbrdkg489p0xmf65xjc8ki1a2szcc8sgwc7z74xy";
|
2016-05-19 21:35:45 +00:00
|
|
|
};
|
|
|
|
|
2019-11-16 04:34:53 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2016-05-19 21:35:45 +00:00
|
|
|
click
|
|
|
|
httpie
|
|
|
|
parsimonious
|
2019-11-16 04:34:53 +00:00
|
|
|
(python.pkgs.callPackage ../../../development/python-modules/prompt_toolkit/1.nix {})
|
2016-05-19 21:35:45 +00:00
|
|
|
pygments
|
|
|
|
six
|
|
|
|
];
|
|
|
|
|
2017-12-18 19:39:12 +00:00
|
|
|
checkPhase = ''
|
2018-05-28 12:59:57 +00:00
|
|
|
$out/bin/${pname} --version | grep -q "${version}"
|
2017-12-18 19:39:12 +00:00
|
|
|
'';
|
|
|
|
|
2016-05-19 21:35:45 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An interactive command-line HTTP client featuring autocomplete and syntax highlighting";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/eliangcs/http-prompt";
|
2016-05-19 21:35:45 +00:00
|
|
|
license = licenses.mit;
|
2019-02-20 18:52:48 +00:00
|
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
2019-08-17 05:41:15 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2016-05-19 21:35:45 +00:00
|
|
|
};
|
|
|
|
}
|