Skip to content

Commit

Permalink
dooit: fix textual version
Browse files Browse the repository at this point in the history
  • Loading branch information
kraanzu committed Sep 29, 2024
1 parent 7ec57ca commit 30547aa
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions pkgs/by-name/do/dooit/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ python3.pkgs.buildPythonApplication rec {
build-system = with python3.pkgs; [ poetry-core ];

pythonRelaxDeps = [
"textual"
"tzlocal"
];

Expand All @@ -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
];

Expand Down

0 comments on commit 30547aa

Please sign in to comment.