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 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 - pythonOlder, 6 7 # build-system 8 poetry-core, ··· 10 # dependencies 11 markdown-it-py, 12 pygments, 13 - typing-extensions, 14 15 # optional-dependencies 16 ipywidgets, ··· 29 30 buildPythonPackage rec { 31 pname = "rich"; 32 - version = "14.0.0"; 33 pyproject = true; 34 35 - disabled = pythonOlder "3.8"; 36 - 37 src = fetchFromGitHub { 38 owner = "Textualize"; 39 repo = "rich"; 40 tag = "v${version}"; 41 - hash = "sha256-gnKzb4lw4zgepTfJahHnpw2/vcg8o1kv8KfeVDSHcQI="; 42 }; 43 44 build-system = [ poetry-core ]; ··· 46 dependencies = [ 47 markdown-it-py 48 pygments 49 - ] 50 - ++ lib.optionals (pythonOlder "3.11") [ typing-extensions ]; 51 52 optional-dependencies = { 53 jupyter = [ ipywidgets ]; ··· 57 attrs 58 pytestCheckHook 59 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 ]; 69 70 pythonImportsCheck = [ "rich" ];
··· 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 6 # build-system 7 poetry-core, ··· 9 # dependencies 10 markdown-it-py, 11 pygments, 12 13 # optional-dependencies 14 ipywidgets, ··· 27 28 buildPythonPackage rec { 29 pname = "rich"; 30 + version = "14.1.0"; 31 pyproject = true; 32 33 src = fetchFromGitHub { 34 owner = "Textualize"; 35 repo = "rich"; 36 tag = "v${version}"; 37 + hash = "sha256-44L3eVf/gI0FlOlxzJ7/+A1jN6ILkeVEelaru1Io20U="; 38 }; 39 40 build-system = [ poetry-core ]; ··· 42 dependencies = [ 43 markdown-it-py 44 pygments 45 + ]; 46 47 optional-dependencies = { 48 jupyter = [ ipywidgets ]; ··· 52 attrs 53 pytestCheckHook 54 which 55 ]; 56 57 pythonImportsCheck = [ "rich" ];