···6677pythonPackages.buildPythonApplication rec {
88 pname = "git-up";
99- version = "1.6.1";
99+ version = "2.2.0";
1010+ format = "pyproject";
10111112 src = fetchPypi {
1212- inherit pname version;
1313- sha256 = "0gs791yb0cndg9879vayvcj329jwhzpk6wrf9ri12l5hg8g490za";
1313+ pname = "git_up";
1414+ inherit version;
1515+ hash = "sha256-GTX2IWLQ48yWfPnmtEa9HJ5umQLttqgTlgZQlaWgeE4=";
1416 };
15171818+ nativeBuildInputs = with pythonPackages; [
1919+ poetry-core
2020+ ];
2121+1622 # git should be on path for tool to work correctly
1723 propagatedBuildInputs = [
1824 git
1925 ] ++ (with pythonPackages; [
2020- click
2126 colorama
2222- docopt
2327 gitpython
2424- six
2528 termcolor
2629 ]);
27302828- nativeCheckInputs = [ git pythonPackages.nose ]; # git needs to be on path
3131+ nativeCheckInputs = [
3232+ git
3333+ pythonPackages.pytestCheckHook
3434+ ];
3535+2936 # 1. git fails to run as it cannot detect the email address, so we set it
3037 # 2. $HOME is by default not a valid dir, so we have to set that too
3138 # https://github.com/NixOS/nixpkgs/issues/12591