git-machete: move to pkgs/by-name

This commit is contained in:
Julian Stecklina
2025-06-09 11:14:56 +02:00
parent ed9a5af115
commit 853e5dd921
2 changed files with 10 additions and 11 deletions
@@ -1,15 +1,13 @@
{
lib,
buildPythonApplication,
pytest-mock,
pytestCheckHook,
python3,
fetchFromGitHub,
installShellFiles,
git,
nix-update-script,
}:
buildPythonApplication rec {
python3.pkgs.buildPythonApplication rec {
pname = "git-machete";
version = "3.34.1";
@@ -22,11 +20,14 @@ buildPythonApplication rec {
nativeBuildInputs = [ installShellFiles ];
nativeCheckInputs = [
git
pytest-mock
pytestCheckHook
];
nativeCheckInputs =
[
git
]
++ (with python3.pkgs; [
pytest-mock
pytestCheckHook
]);
disabledTests = [
# Requires fully functioning shells including zsh modules and bash
-2
View File
@@ -1307,8 +1307,6 @@ with pkgs;
git-imerge = python3Packages.callPackage ../applications/version-management/git-imerge { };
git-machete = python3Packages.callPackage ../applications/version-management/git-machete { };
git-publish = python3Packages.callPackage ../applications/version-management/git-publish { };
git-recent = callPackage ../applications/version-management/git-recent {