nixpkgs/pkgs/tools/misc/thefuck/default.nix

38 lines
956 B
Nix
Raw Normal View History

2017-12-14 17:31:25 +00:00
{ stdenv, fetchFromGitHub, buildPythonApplication
, colorama, decorator, psutil, pyte, six
, pytest, pytest-mock
}:
2017-06-14 08:57:38 +00:00
2017-12-14 17:31:25 +00:00
buildPythonApplication rec {
2017-06-14 08:57:38 +00:00
pname = "thefuck";
2019-05-30 20:23:54 +00:00
version = "3.29";
2017-06-14 08:57:38 +00:00
2017-12-14 17:31:25 +00:00
src = fetchFromGitHub {
owner = "nvbn";
repo = "${pname}";
rev = version;
2019-05-30 20:23:54 +00:00
sha256 = "1qhxwjjgrzpqrqjv7l2847ywpln76lyd6j8bl9gz2r6kl0fx2fqs";
2017-06-14 08:57:38 +00:00
};
2017-12-14 17:31:25 +00:00
propagatedBuildInputs = [ colorama decorator psutil pyte six ];
checkInputs = [ pytest pytest-mock ];
checkPhase = ''
export HOME=$TMPDIR
export LANG=en_US.UTF-8
export XDG_CACHE_HOME=$TMPDIR/cache
export XDG_CONFIG_HOME=$TMPDIR/config
py.test
'';
doCheck = false; # The above is only enough for tests to pass outside the sandbox.
2017-06-14 08:57:38 +00:00
meta = with stdenv.lib; {
homepage = https://github.com/nvbn/thefuck;
2017-06-14 08:57:38 +00:00
description = "Magnificent app which corrects your previous console command.";
license = licenses.mit;
maintainers = with maintainers; [ ma27 ];
};
}