Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions pkgs/development/python-modules/textual/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,5 @@ buildPythonPackage rec {
changelog = "https://github.com/Textualize/textual/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ gepbird ];
# https://github.com/Textualize/textual/issues/5868
broken = true;
};
}
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/tree-sitter-rust/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@

buildPythonPackage rec {
pname = "tree-sitter-rust";
version = "0.24.0";
version = "0.23.2";
pyproject = true;

src = fetchFromGitHub {
owner = "tree-sitter";
repo = "tree-sitter-rust";
tag = "v${version}";
hash = "sha256-y3sJURlSTM7LRRN5WGIAeslsdRZU522Tfcu6dnXH/XQ=";
hash = "sha256-aT+tlrEKMgWqTEq/NHh8Vj92h6i1aU6uPikDyaP2vfc=";
};

build-system = [
Expand Down
30 changes: 10 additions & 20 deletions pkgs/development/python-modules/tree-sitter/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@

buildPythonPackage rec {
pname = "tree-sitter";
version = "0.24.0-unstable-2025-06-02";
version = "0.24.0";
pyproject = true;

disabled = pythonOlder "3.10";

src = fetchFromGitHub {
owner = "tree-sitter";
repo = "py-tree-sitter";
rev = "9c78f3b8d10f81b97fbb2181c9333323d6375480";
hash = "sha256-jPqTraGrYFXBlci4Zaleyp/NTQhvuI39tYWRckjnV2E=";
tag = "v${version}";
hash = "sha256-ZDt/8suteaAjGdk71l8eej7jDkkVpVDBIZS63SA8tsU=";
fetchSubmodules = true;
};

Expand Down Expand Up @@ -56,21 +56,11 @@ buildPythonPackage rec {
"test_dot_graphs"
];

meta =
let
# for an -unstable version, we grab the release notes for the last tagged
# version it is based upon
lastTag = lib.pipe version [
lib.splitVersion
(lib.take 3)
(lib.concatStringsSep ".")
];
in
{
description = "Python bindings to the Tree-sitter parsing library";
homepage = "https://github.com/tree-sitter/py-tree-sitter";
changelog = "https://github.com/tree-sitter/py-tree-sitter/releases/tag/v${lastTag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
meta = {
description = "Python bindings to the Tree-sitter parsing library";
homepage = "https://github.com/tree-sitter/py-tree-sitter";
changelog = "https://github.com/tree-sitter/py-tree-sitter/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
Loading