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

38 lines
950 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, buildPythonApplication
2017-12-14 18:31:25 +01:00
, colorama, decorator, psutil, pyte, six
, pytest, pytest-mock
}:
2017-06-14 10:57:38 +02:00
2017-12-14 18:31:25 +01:00
buildPythonApplication rec {
2017-06-14 10:57:38 +02:00
pname = "thefuck";
version = "3.30";
2017-06-14 10:57:38 +02:00
2017-12-14 18:31:25 +01:00
src = fetchFromGitHub {
owner = "nvbn";
2019-09-09 01:38:31 +02:00
repo = pname;
2017-12-14 18:31:25 +01:00
rev = version;
sha256 = "0fnf78956pwhb9cgv1jmgypnkma5xzflkivfrkfiadbgin848yfg";
2017-06-14 10:57:38 +02:00
};
2017-12-14 18:31:25 +01: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 10:57:38 +02:00
meta = with lib; {
homepage = "https://github.com/nvbn/thefuck";
description = "Magnificent app which corrects your previous console command";
2017-06-14 10:57:38 +02:00
license = licenses.mit;
maintainers = with maintainers; [ ma27 ];
};
}