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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.2 KiB
Nix
Raw Normal View History

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
, 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 ];
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"
];
meta = with lib; {
homepage = "https://github.com/nvbn/thefuck";
description = "Magnificent app which corrects your previous console command";
2017-06-14 08:57:38 +00:00
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
2017-06-14 08:57:38 +00:00
};
}