about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/std2/default.nix
blob: 2b51f9caaec6de015eea371f46f601d0b1b0911d (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 = "unstable-2023-07-09";

  format = "pyproject";

  src = fetchFromGitHub {
    owner = "ms-jpq";
    repo = "std2";
    rev = "2d5594b40585ecae60ce5175bee68cc8b3085ee6";
    hash = "sha256-phGIWow7PGOtS1Pre1Gz0Xg6izGp6BiUTmze5jI/BwY=";
  };

  nativeBuildInputs = [ setuptools ];

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