Commit a1815ec7 authored by rxiao's avatar rxiao Committed by Yt
Browse files

python3.pkgs.mmengine: init at 0.7.3

parent 179ed4e5
Loading
Loading
Loading
Loading
+78 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };