python3.pkgs.mmengine: init at 0.7.3

This commit is contained in:
rxiao 2023-05-22 16:34:23 +10:00 committed by Yt
parent 179ed4e562
commit a1815ec7da
2 changed files with 80 additions and 0 deletions

View file

@ -0,0 +1,78 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, torch
, opencv4
, yapf
, coverage
, mlflow
, lmdb
, matplotlib
, numpy
, pyyaml
, rich
, termcolor
, addict
, parameterized
}:
buildPythonPackage rec {
pname = "mmengine";
version = "0.7.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "open-mmlab";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-Ook85XWosxbvshsQxZEoAWI/Ugl2uSO8zoNJ5EuuW1E=";
};
# tests are disabled due to sandbox env.
disabledTests = [
"test_fileclient"
"test_http_backend"
"test_misc"
];
nativeBuildInputs = [ pytestCheckHook ];
nativeCheckInputs = [
coverage
lmdb
mlflow
torch
parameterized
];
propagatedBuildInputs = [
addict
matplotlib
numpy
pyyaml
rich
termcolor
yapf
opencv4
];
preCheck = ''
export HOME=$TMPDIR
'';
pythonImportsCheck = [
"mmengine"
];
meta = with lib; {
description = "a foundational library for training deep learning models based on PyTorch";
homepage = "https://github.com/open-mmlab/mmengine";
changelog = "https://github.com/open-mmlab/mmengine/releases/tag/v${version}";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ rxiao ];
};
}

View file

@ -6299,6 +6299,8 @@ self: super: with self; {
mmcv = callPackage ../development/python-modules/mmcv { };
mmengine = callPackage ../development/python-modules/mmengine { };
mmh3 = callPackage ../development/python-modules/mmh3 { };
mmpython = callPackage ../development/python-modules/mmpython { };