2022-12-05 21:00:57 +00:00
|
|
|
{ lib
|
|
|
|
, pythonPackages
|
|
|
|
, git
|
|
|
|
}:
|
2017-01-06 10:56:26 +00:00
|
|
|
|
2019-08-26 18:05:40 +00:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "git-up";
|
2019-08-26 18:05:40 +00:00
|
|
|
version = "1.6.1";
|
2017-01-06 10:56:26 +00:00
|
|
|
|
2019-08-26 18:05:40 +00:00
|
|
|
src = pythonPackages.fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0gs791yb0cndg9879vayvcj329jwhzpk6wrf9ri12l5hg8g490za";
|
2017-01-06 10:56:26 +00:00
|
|
|
};
|
|
|
|
|
2019-08-26 18:05:40 +00:00
|
|
|
# git should be on path for tool to work correctly
|
2022-12-05 21:00:57 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
git
|
|
|
|
] ++ (with pythonPackages; [
|
|
|
|
click
|
|
|
|
colorama
|
|
|
|
docopt
|
|
|
|
gitpython
|
|
|
|
six
|
|
|
|
termcolor
|
|
|
|
]);
|
2017-01-06 10:56:26 +00:00
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [ git pythonPackages.nose ]; # git needs to be on path
|
2017-01-06 10:56:26 +00:00
|
|
|
# 1. git fails to run as it cannot detect the email address, so we set it
|
|
|
|
# 2. $HOME is by default not a valid dir, so we have to set that too
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/12591
|
|
|
|
preCheck = ''
|
|
|
|
export HOME=$TMPDIR
|
|
|
|
git config --global user.email "nobody@example.com"
|
|
|
|
git config --global user.name "Nobody"
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
2019-08-26 18:05:40 +00:00
|
|
|
rm -r $out/${pythonPackages.python.sitePackages}/PyGitUp/tests
|
2017-01-06 10:56:26 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/msiemens/PyGitUp";
|
2020-10-11 05:55:05 +00:00
|
|
|
description = "A git pull replacement that rebases all local branches when pulling";
|
2017-01-06 10:56:26 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|