summary refs log blame commit diff
path: root/pkgs/tools/misc/thefuck/default.nix
blob: b399077bc5b459a70d5e019dbf1a8bdeaa4b3e2b (plain) (tree)




















                                                                       
                                               




                                                                                  
{ fetchurl, stdenv, pkgs, ... }:

pkgs.pythonPackages.buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "thefuck";
  version = "3.18";

  src = fetchurl {
    url = "https://github.com/nvbn/${pname}/archive/${version}.tar.gz";
    sha256 = "1xsvkqh89rgxq5w03mnlcfkn9y39nfwhb2pjabjspcc2mi2mq5y6";
  };

  propagatedBuildInputs = with pkgs.pythonPackages; [
    psutil
    colorama
    six
    decorator
    pathlib2
  ];

  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 ];
  };
}