From 0acc6381b98baaff045b3739dd3ced2161c54218 Mon Sep 17 00:00:00 2001 From: Ben Siraphob Date: Tue, 22 Feb 2022 22:47:11 -0600 Subject: python3Packages.py-tree-sitter: init at unstable-2022-02-08 --- .../python-modules/py-tree-sitter/default.nix | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pkgs/development/python-modules/py-tree-sitter/default.nix (limited to 'pkgs/development/python-modules/py-tree-sitter') diff --git a/pkgs/development/python-modules/py-tree-sitter/default.nix b/pkgs/development/python-modules/py-tree-sitter/default.nix new file mode 100644 index 0000000000000..9d7b829869768 --- /dev/null +++ b/pkgs/development/python-modules/py-tree-sitter/default.nix @@ -0,0 +1,25 @@ +{ lib, stdenv, buildPythonPackage, fetchFromGitHub }: + +buildPythonPackage rec { + pname = "py-tree-sitter"; + version = "unstable-2022-02-08"; + format = "pyproject"; + + src = fetchFromGitHub { + owner = "tree-sitter"; + repo = "py-tree-sitter"; + rev = "9c8261d36e55d9e4a6543dc9e570bfd7911ed7bf"; + sha256 = "sha256-YDe9m85LIPNumo9mrhMMotUspq/8B3t5kt2ScMJI+hY="; + fetchSubmodules = true; + }; + + pythonImportsCheck = [ "tree_sitter" ]; + + meta = with lib; { + homepage = "https://github.com/tree-sitter/py-tree-sitter"; + description = "Python bindings for tree-sitter"; + license = licenses.mit; + maintainers = with maintainers; [ siraben ]; + platforms = platforms.unix; + }; +} -- cgit 1.4.1