Merge pull request #229453 from AngryAnt/master

proxmove: init at 1.2
This commit is contained in:
Martin Weinelt 2023-05-05 22:21:15 +02:00 committed by GitHub
commit 3b66318c06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,42 @@
{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "proxmove";
version = "1.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "ossobv";
repo = "proxmove";
rev = "v${version}";
hash = "sha256-8xzsmQsogoMrdpf8+mVZRWPGQt9BO0dBT0aKt7ygUe4=";
};
propagatedBuildInputs = with python3.pkgs; [
proxmoxer
];
preBuild = ''
rm -R assets
rm -R artwork
'';
checkPhase = ''
runHook preCheck
$out/bin/${pname} --version
runHook postCheck
'';
meta = with lib; {
description = "The Proxmox VM migrator: migrates VMs between different Proxmox VE clusters";
homepage = "https://github.com/ossobv/proxmove";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ AngryAnt ];
};
}

View file

@ -18824,6 +18824,8 @@ with pkgs;
procodile = callPackage ../tools/system/procodile { };
proxmove = callPackage ../tools/admin/proxmove { };
pry = callPackage ../development/tools/pry { };
pup = callPackage ../development/tools/pup { };