dooit: Fix textual version (#345228)

This commit is contained in:
kirillrdy
2024-10-01 09:41:56 +10:00
committed by GitHub
+15 -2
View File
@@ -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
];