lol

python311Packages.mmengine: 0.10.3 -> 0.10.4

Diff: https://github.com/open-mmlab/mmengine/compare/refs/tags/v0.10.3...v0.10.4

Changelog: https://github.com/open-mmlab/mmengine/releases/tag/v0.10.4

+4 -7
+4 -7
pkgs/development/python-modules/mmengine/default.nix
··· 15 15 pyyaml, 16 16 rich, 17 17 setuptools, 18 + stdenv, 18 19 termcolor, 19 20 torch, 20 21 yapf, ··· 22 23 23 24 buildPythonPackage rec { 24 25 pname = "mmengine"; 25 - version = "0.10.3"; 26 + version = "0.10.4"; 26 27 pyproject = true; 27 28 28 29 disabled = pythonOlder "3.7"; ··· 31 32 owner = "open-mmlab"; 32 33 repo = "mmengine"; 33 34 rev = "refs/tags/v${version}"; 34 - hash = "sha256-fKtPDdeKB3vX2mD+Tsicq8KOkPDSACzKK1XLyugdPQ4="; 35 + hash = "sha256-+YDtYHp3BwKvzhmHC6hAZ3Qtc9uRZMo/TpWqdpm2hn0="; 35 36 }; 36 37 37 38 build-system = [ setuptools ]; ··· 99 100 "test_close" 100 101 ]; 101 102 102 - pytestFlagsArray = [ 103 - "-W" 104 - "ignore::pytest.PytestRemovedIn8Warning" 105 - ]; 106 - 107 103 meta = with lib; { 108 104 description = "Library for training deep learning models based on PyTorch"; 109 105 homepage = "https://github.com/open-mmlab/mmengine"; 110 106 changelog = "https://github.com/open-mmlab/mmengine/releases/tag/v${version}"; 111 107 license = with licenses; [ asl20 ]; 112 108 maintainers = with maintainers; [ rxiao ]; 109 + broken = stdenv.isDarwin || (stdenv.isLinux && stdenv.isAarch64); 113 110 }; 114 111 }