memray: 1.18.0 -> 1.19.0

Changelog: https://github.com/bloomberg/memray/releases/tag/v1.19.0

+2 -10
+2 -10
pkgs/by-name/me/memray/package.nix
··· 10 10 11 11 python3Packages.buildPythonApplication rec { 12 12 pname = "memray"; 13 - version = "1.18.0"; 13 + version = "1.19.0"; 14 14 pyproject = true; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "bloomberg"; 18 18 repo = "memray"; 19 19 tag = "v${version}"; 20 - hash = "sha256-bShFMuDJlvBA3rQJRwXlsgRk4q+gdFQjOpDzOrp4/8k="; 20 + hash = "sha256-yOiN4KES+zCHp/n0pN73Yv6ibEtUGy1pqiH/3WECqkA="; 21 21 }; 22 - 23 - # AttributeError: 'Label' object has no attribute 'renderable'. 24 - # In textual==0.6.0, the `renderable` property was renamed to `content` 25 - # https://github.com/Textualize/textual/pull/6041 26 - postPatch = '' 27 - substituteInPlace tests/unit/test_tui_reporter.py \ 28 - --replace-fail ".renderable" ".content" 29 - ''; 30 22 31 23 build-system = with python3Packages; [ 32 24 distutils