02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
40 lines
833 B
Nix
40 lines
833 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, six
|
|
, archspec
|
|
, pytestCheckHook
|
|
, pytest-xdist
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hpccm";
|
|
version = "22.10.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "NVIDIA";
|
|
repo = "hpc-container-maker";
|
|
rev = "v${version}";
|
|
hash = "sha256-dLMbwtvn7HTVVlWHAzXU19ERdJxytf9NlnqMXW6ShKI=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six archspec ];
|
|
nativeCheckInputs = [ pytestCheckHook pytest-xdist ];
|
|
|
|
disabledTests = [
|
|
# tests require git
|
|
"test_commit"
|
|
"test_tag"
|
|
];
|
|
|
|
pythonImportsCheck = [ "hpccm" ];
|
|
|
|
meta = with lib; {
|
|
description = "HPC Container Maker";
|
|
homepage = "https://github.com/NVIDIA/hpc-container-maker";
|
|
license = licenses.asl20;
|
|
platforms = platforms.x86;
|
|
maintainers = with maintainers; [ atila ];
|
|
};
|
|
}
|