1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 setuptools,
6}:
7
8buildPythonPackage {
9 pname = "std2";
10 version = "0-unstable-2024-09-02";
11 pyproject = true;
12
13 src = fetchFromGitHub {
14 owner = "ms-jpq";
15 repo = "std2";
16 rev = "205d1f52e9b5438ef2b732c77e1144847cafa8d0";
17 hash = "sha256-WdUefadEk92cGnDI+KbQBpjg+d7KgI6bjlQlyhRRRFA=";
18 };
19
20 nativeBuildInputs = [ setuptools ];
21
22 meta = {
23 homepage = "https://github.com/ms-jpq/std2";
24 description = "Dependency to chadtree and coq_nvim plugins";
25 license = lib.licenses.gpl3Plus;
26 maintainers = with lib.maintainers; [ GaetanLepage ];
27 };
28}