Unverified Commit 1d71b24d authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

dooit: Fix textual version (#345228)

parents 51ab9a6b 30547aa2
Loading
Loading
Loading
Loading
+15 −2
Original line number Diff line number Diff line
@@ -24,7 +24,6 @@ python3.pkgs.buildPythonApplication rec {
  build-system = with python3.pkgs; [ poetry-core ];

  pythonRelaxDeps = [
    "textual"
    "tzlocal"
  ];

@@ -33,7 +32,21 @@ python3.pkgs.buildPythonApplication rec {
    pyperclip
    python-dateutil
    pyyaml
    textual
    (textual.overridePythonAttrs (oldAttrs: {
      version = "0.47.1";
      src = fetchFromGitHub {
        owner = "Textualize";
        repo = "textual";
        rev = "refs/tags/v0.47.1";
        hash = "sha256-RFaZKQ+0o6ZvfZxx95a1FjSHVJ0VOIAfzkdxYQXYBKU=";
      };
      disabledTests = [
        "test_tracked_slugs"
        "test_textual_env_var"
        "test_register_language"
        "test_register_language_existing_language"
      ];
    }))
    tzlocal
  ];