2021-11-04 19:59:32 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, buildPythonApplication
|
2017-12-14 17:31:25 +00:00
|
|
|
, colorama, decorator, psutil, pyte, six
|
2021-02-12 18:43:48 +00:00
|
|
|
, go, mock, pytestCheckHook, pytest-mock
|
2017-12-14 17:31:25 +00:00
|
|
|
}:
|
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";
|
2022-01-04 12:23:09 +00:00
|
|
|
version = "3.32";
|
2017-06-14 08:57:38 +00:00
|
|
|
|
2017-12-14 17:31:25 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nvbn";
|
2019-09-08 23:38:31 +00:00
|
|
|
repo = pname;
|
2017-12-14 17:31:25 +00:00
|
|
|
rev = version;
|
2022-01-04 12:23:09 +00:00
|
|
|
sha256 = "sha256-bRCy95owBJaxoyCNQF6gEENoxCkmorhyKzZgU1dQN6I=";
|
2017-06-14 08:57:38 +00:00
|
|
|
};
|
|
|
|
|
2017-12-14 17:31:25 +00:00
|
|
|
propagatedBuildInputs = [ colorama decorator psutil pyte six ];
|
|
|
|
|
2021-02-12 18:43:48 +00:00
|
|
|
checkInputs = [ go mock pytestCheckHook pytest-mock ];
|
2017-06-14 08:57:38 +00:00
|
|
|
|
2021-11-04 19:59:32 +00:00
|
|
|
disabledTests = lib.optional stdenv.isDarwin [
|
|
|
|
"test_settings_defaults"
|
|
|
|
"test_from_file"
|
|
|
|
"test_from_env"
|
|
|
|
"test_settings_from_args"
|
|
|
|
"test_get_all_executables_exclude_paths"
|
|
|
|
"test_with_blank_cache"
|
|
|
|
"test_with_filled_cache"
|
|
|
|
"test_when_etag_changed"
|
|
|
|
"test_for_generic_shell"
|
|
|
|
"test_on_first_run"
|
|
|
|
"test_on_run_after_other_commands"
|
|
|
|
"test_when_cant_configure_automatically"
|
|
|
|
"test_when_already_configured"
|
|
|
|
"test_when_successfully_configured"
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/nvbn/thefuck";
|
2020-10-11 05:55:05 +00:00
|
|
|
description = "Magnificent app which corrects your previous console command";
|
2017-06-14 08:57:38 +00:00
|
|
|
license = licenses.mit;
|
2021-08-27 20:09:49 +00:00
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
2017-06-14 08:57:38 +00:00
|
|
|
};
|
|
|
|
}
|