nixpkgs/pkgs/tools/misc/thefuck/default.nix
R. RyanTM 3650f59570 thefuck: 3.27 -> 3.28
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/thefuck/versions
2018-12-14 06:04:22 -05:00

38 lines
956 B
Nix

{ stdenv, fetchFromGitHub, buildPythonApplication
, colorama, decorator, psutil, pyte, six
, pytest, pytest-mock
}:
buildPythonApplication rec {
pname = "thefuck";
version = "3.28";
src = fetchFromGitHub {
owner = "nvbn";
repo = "${pname}";
rev = version;
sha256 = "070b2sx8r0b4hry6xg97psxlikxghmz91zicg2cm6kc1yhgz4agc";
};
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.
meta = with stdenv.lib; {
homepage = https://github.com/nvbn/thefuck;
description = "Magnificent app which corrects your previous console command.";
license = licenses.mit;
maintainers = with maintainers; [ ma27 ];
};
}