summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-12-21 01:35:27 +0000
committerGitHub <noreply@github.com>2017-12-21 01:35:27 +0000
commitb58cda709de04fd1eeeee056192ce108c4b3240a (patch)
tree297c33965094457dd9b747cfee2e62824904500b /pkgs
parentc2b8cf0391519798a50eec37efff28626dd4bec0 (diff)
parent6bb181799952bd0635fed9aac69ffe118e4fb112 (diff)
downloadnixlib-b58cda709de04fd1eeeee056192ce108c4b3240a.tar
nixlib-b58cda709de04fd1eeeee056192ce108c4b3240a.tar.gz
nixlib-b58cda709de04fd1eeeee056192ce108c4b3240a.tar.bz2
nixlib-b58cda709de04fd1eeeee056192ce108c4b3240a.tar.lz
nixlib-b58cda709de04fd1eeeee056192ce108c4b3240a.tar.xz
nixlib-b58cda709de04fd1eeeee056192ce108c4b3240a.tar.zst
nixlib-b58cda709de04fd1eeeee056192ce108c4b3240a.zip
Merge pull request #32856 from markus1189/http-prompt
http-prompt: disable tests
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/networking/http-prompt/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/tools/networking/http-prompt/default.nix b/pkgs/tools/networking/http-prompt/default.nix
index 83ad64a66a4a..fd7caf927653 100644
--- a/pkgs/tools/networking/http-prompt/default.nix
+++ b/pkgs/tools/networking/http-prompt/default.nix
@@ -20,6 +20,10 @@ pythonPackages.buildPythonApplication rec {
     six
   ];
 
+  checkPhase = ''
+    $out/bin/${name} --version | grep -q "${version}"
+  '';
+
   meta = with stdenv.lib; {
     description = "An interactive command-line HTTP client featuring autocomplete and syntax highlighting";
     homepage = https://github.com/eliangcs/http-prompt;