2022-12-05 21:00:57 +00:00
|
|
|
{ lib
|
|
|
|
, pythonPackages
|
2023-05-25 14:51:30 +00:00
|
|
|
, fetchPypi
|
2022-12-05 21:00:57 +00:00
|
|
|
, 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";
|
2024-10-26 19:50:17 +00:00
|
|
|
version = "2.3.0";
|
2023-08-29 18:34:01 +00:00
|
|
|
format = "pyproject";
|
2017-01-06 10:56:26 +00:00
|
|
|
|
2023-05-25 14:51:30 +00:00
|
|
|
src = fetchPypi {
|
2023-08-29 18:34:01 +00:00
|
|
|
pname = "git_up";
|
|
|
|
inherit version;
|
2024-10-26 19:50:17 +00:00
|
|
|
hash = "sha256-SncbnK6LxsleKRa/sSCm/8dsgPw/XJGvYfkcIeWYDy4=";
|
2017-01-06 10:56:26 +00:00
|
|
|
};
|
|
|
|
|
2023-08-29 18:34:01 +00:00
|
|
|
nativeBuildInputs = with pythonPackages; [
|
|
|
|
poetry-core
|
|
|
|
];
|
|
|
|
|
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; [
|
|
|
|
colorama
|
|
|
|
gitpython
|
|
|
|
termcolor
|
|
|
|
]);
|
2017-01-06 10:56:26 +00:00
|
|
|
|
2023-08-29 18:34:01 +00:00
|
|
|
nativeCheckInputs = [
|
|
|
|
git
|
2024-03-27 17:24:10 +00:00
|
|
|
pythonPackages.pytest7CheckHook
|
2023-08-29 18:34:01 +00:00
|
|
|
];
|
|
|
|
|
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 = ''
|
2023-05-25 14:51:30 +00:00
|
|
|
export HOME=$TMPDIR
|
|
|
|
git config --global user.email "nobody@example.com"
|
|
|
|
git config --global user.name "Nobody"
|
|
|
|
'';
|
2017-01-06 10:56:26 +00:00
|
|
|
|
|
|
|
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 = "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;
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "git-up";
|
2017-01-06 10:56:26 +00:00
|
|
|
};
|
|
|
|
}
|