python3Packages.rich: 14.0.0 -> 14.1.0 (#429077)

authored by Martin Weinelt and committed by GitHub 8d3f059d 764408b4

+3 -16
+3 -16
pkgs/development/python-modules/rich/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - pythonOlder, 6 5 7 6 # build-system 8 7 poetry-core, ··· 10 9 # dependencies 11 10 markdown-it-py, 12 11 pygments, 13 - typing-extensions, 14 12 15 13 # optional-dependencies 16 14 ipywidgets, ··· 29 27 30 28 buildPythonPackage rec { 31 29 pname = "rich"; 32 - version = "14.0.0"; 30 + version = "14.1.0"; 33 31 pyproject = true; 34 32 35 - disabled = pythonOlder "3.8"; 36 - 37 33 src = fetchFromGitHub { 38 34 owner = "Textualize"; 39 35 repo = "rich"; 40 36 tag = "v${version}"; 41 - hash = "sha256-gnKzb4lw4zgepTfJahHnpw2/vcg8o1kv8KfeVDSHcQI="; 37 + hash = "sha256-44L3eVf/gI0FlOlxzJ7/+A1jN6ILkeVEelaru1Io20U="; 42 38 }; 43 39 44 40 build-system = [ poetry-core ]; ··· 46 42 dependencies = [ 47 43 markdown-it-py 48 44 pygments 49 - ] 50 - ++ lib.optionals (pythonOlder "3.11") [ typing-extensions ]; 45 + ]; 51 46 52 47 optional-dependencies = { 53 48 jupyter = [ ipywidgets ]; ··· 57 52 attrs 58 53 pytestCheckHook 59 54 which 60 - ]; 61 - 62 - disabledTests = [ 63 - # pygments 2.19 regressions 64 - # https://github.com/Textualize/rich/issues/3612 65 - "test_inline_code" 66 - "test_blank_lines" 67 - "test_python_render_simple_indent_guides" 68 55 ]; 69 56 70 57 pythonImportsCheck = [ "rich" ];