about summary refs log tree commit diff
path: root/pkgs/development/python-modules/std2/default.nix
blob: f25c28601d12347b7d30b7ed15db42e8963da47b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
}:

buildPythonPackage {
  pname = "std2";
  version = "0-unstable-2024-09-02";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "ms-jpq";
    repo = "std2";
    rev = "205d1f52e9b5438ef2b732c77e1144847cafa8d0";
    hash = "sha256-WdUefadEk92cGnDI+KbQBpjg+d7KgI6bjlQlyhRRRFA=";
  };

  nativeBuildInputs = [ setuptools ];

  meta = {
    homepage = "https://github.com/ms-jpq/std2";
    description = "Dependency to chadtree and coq_nvim plugins";
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ GaetanLepage ];
  };
}