python3Packages.hpccm: 23.11.0 -> 25.9.0 (#445540)

dotlambda fce34f0b 7d56a3ff

Changed files
+9 -10
pkgs
development
python-modules
hpccm
+9 -10
pkgs/development/python-modules/hpccm/default.nix
···
archspec,
buildPythonPackage,
fetchFromGitHub,
+
packaging,
pytest-xdist,
pytestCheckHook,
-
pythonOlder,
setuptools,
six,
}:
buildPythonPackage rec {
pname = "hpccm";
-
version = "23.11.0";
+
version = "25.9.0";
pyproject = true;
-
disabled = pythonOlder "3.7";
-
src = fetchFromGitHub {
owner = "NVIDIA";
repo = "hpc-container-maker";
tag = "v${version}";
-
hash = "sha256-uB2+1Nc+SgPzB5hJI1L6yD8gn0hGOkIZF6rejq4rYg8=";
+
hash = "sha256-/R1GieioesZmVt2Dh5WmOZn8Vv4qgin2WsPI3jpZYtA=";
};
build-system = [ setuptools ];
···
dependencies = [
six
archspec
+
packaging
];
nativeCheckInputs = [
···
pythonImportsCheck = [ "hpccm" ];
-
meta = with lib; {
+
meta = {
description = "HPC Container Maker";
homepage = "https://github.com/NVIDIA/hpc-container-maker";
-
changelog = "https://github.com/NVIDIA/hpc-container-maker/blob/v${version}/CHANGELOG.md";
-
license = licenses.asl20;
-
maintainers = with maintainers; [ atila ];
+
changelog = "https://github.com/NVIDIA/hpc-container-maker/blob/${src.tag}/CHANGELOG.md";
+
license = lib.licenses.asl20;
+
maintainers = with lib.maintainers; [ atila ];
mainProgram = "hpccm";
-
platforms = platforms.x86;
+
platforms = lib.platforms.x86;
};
}