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