···67pythonPackages.buildPythonApplication rec {
8 pname = "git-up";
9- version = "1.6.1";
01011 src = fetchPypi {
12- inherit pname version;
13- sha256 = "0gs791yb0cndg9879vayvcj329jwhzpk6wrf9ri12l5hg8g490za";
014 };
15000016 # git should be on path for tool to work correctly
17 propagatedBuildInputs = [
18 git
19 ] ++ (with pythonPackages; [
20- click
21 colorama
22- docopt
23 gitpython
24- six
25 termcolor
26 ]);
2728- nativeCheckInputs = [ git pythonPackages.nose ]; # git needs to be on path
000029 # 1. git fails to run as it cannot detect the email address, so we set it
30 # 2. $HOME is by default not a valid dir, so we have to set that too
31 # https://github.com/NixOS/nixpkgs/issues/12591
···67pythonPackages.buildPythonApplication rec {
8 pname = "git-up";
9+ version = "2.2.0";
10+ format = "pyproject";
1112 src = fetchPypi {
13+ pname = "git_up";
14+ inherit version;
15+ hash = "sha256-GTX2IWLQ48yWfPnmtEa9HJ5umQLttqgTlgZQlaWgeE4=";
16 };
1718+ nativeBuildInputs = with pythonPackages; [
19+ poetry-core
20+ ];
21+22 # git should be on path for tool to work correctly
23 propagatedBuildInputs = [
24 git
25 ] ++ (with pythonPackages; [
026 colorama
027 gitpython
028 termcolor
29 ]);
3031+ nativeCheckInputs = [
32+ git
33+ pythonPackages.pytestCheckHook
34+ ];
35+36 # 1. git fails to run as it cannot detect the email address, so we set it
37 # 2. $HOME is by default not a valid dir, so we have to set that too
38 # https://github.com/NixOS/nixpkgs/issues/12591