Unverified Commit 3f226592 authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

python3Packages.textual: 6.4.0 -> 6.5.0 (#457519)

parents bc7f6fa8 04e39c75
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -46,6 +46,13 @@ buildPythonPackage rec {
    pytestCheckHook
  ];

  disabledTests = [
    # AssertionError: assert None == 'word'
    # https://github.com/tconbeer/textual-textarea/issues/312
    "test_autocomplete"
    "test_autocomplete_with_types"
  ];

  pythonImportsCheck = [ "textual_textarea" ];

  meta = {
+2 −2
Original line number Diff line number Diff line
@@ -30,14 +30,14 @@

buildPythonPackage rec {
  pname = "textual";
  version = "6.4.0";
  version = "6.5.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Textualize";
    repo = "textual";
    tag = "v${version}";
    hash = "sha256-lwtgPJK62SntL0ThoIpmEq0Ngjf8wl73Q8PXjvut3ps=";
    hash = "sha256-Z9KevcicU+mt1XglYOdGWnMbRa1zpbts+0D2nwtgAac=";
  };

  build-system = [ poetry-core ];