nixpkgs/pkgs/applications/version-management/git-up/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.3 KiB
Nix
Raw Normal View History

2022-12-05 21:00:57 +00:00
{ lib
, pythonPackages
, fetchPypi
2022-12-05 21:00:57 +00:00
, git
}:
2019-08-26 18:05:40 +00:00
pythonPackages.buildPythonApplication rec {
2019-08-31 11:41:23 +00:00
pname = "git-up";
2023-08-29 18:34:01 +00:00
version = "2.2.0";
format = "pyproject";
src = fetchPypi {
2023-08-29 18:34:01 +00:00
pname = "git_up";
inherit version;
hash = "sha256-GTX2IWLQ48yWfPnmtEa9HJ5umQLttqgTlgZQlaWgeE4=";
};
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
]);
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
];
# 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
'';
meta = with lib; {
homepage = "https://github.com/msiemens/PyGitUp";
description = "A git pull replacement that rebases all local branches when pulling";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.all;
2023-11-27 01:17:53 +00:00
mainProgram = "git-up";
};
}