forked from mirrors/nixpkgs
hpccm: init at 22.5.0
This commit is contained in:
parent
2aad2691bc
commit
e731ced862
39
pkgs/development/python-modules/hpccm/default.nix
Normal file
39
pkgs/development/python-modules/hpccm/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, buildPythonPackage
|
||||||
|
, six
|
||||||
|
, archspec
|
||||||
|
, pytestCheckHook
|
||||||
|
, pytest-xdist
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "hpccm";
|
||||||
|
version = "22.5.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "NVIDIA";
|
||||||
|
repo = "hpc-container-maker";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-zR5+X9BKaUvLPQ05FnfU817esgxVqP8n+wfdWy20BN4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ six archspec ];
|
||||||
|
checkInputs = [ 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -6996,6 +6996,8 @@ with pkgs;
|
||||||
|
|
||||||
hotspot = libsForQt5.callPackage ../development/tools/analysis/hotspot { };
|
hotspot = libsForQt5.callPackage ../development/tools/analysis/hotspot { };
|
||||||
|
|
||||||
|
hpccm = with python3Packages; toPythonApplication hpccm;
|
||||||
|
|
||||||
hping = callPackage ../tools/networking/hping { };
|
hping = callPackage ../tools/networking/hping { };
|
||||||
|
|
||||||
hqplayer-desktop = libsForQt5.callPackage ../applications/audio/hqplayer-desktop { };
|
hqplayer-desktop = libsForQt5.callPackage ../applications/audio/hqplayer-desktop { };
|
||||||
|
|
|
@ -4011,6 +4011,8 @@ in {
|
||||||
|
|
||||||
hpack = callPackage ../development/python-modules/hpack { };
|
hpack = callPackage ../development/python-modules/hpack { };
|
||||||
|
|
||||||
|
hpccm = callPackage ../development/python-modules/hpccm { };
|
||||||
|
|
||||||
hsaudiotag3k = callPackage ../development/python-modules/hsaudiotag3k { };
|
hsaudiotag3k = callPackage ../development/python-modules/hsaudiotag3k { };
|
||||||
|
|
||||||
hsluv = callPackage ../development/python-modules/hsluv { };
|
hsluv = callPackage ../development/python-modules/hsluv { };
|
||||||
|
|
Loading…
Reference in a new issue