9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
31 lines
686 B
Nix
31 lines
686 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pynvim
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "pynvim-pp";
|
|
version = "unstable-2023-07-09";
|
|
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ms-jpq";
|
|
repo = "pynvim_pp";
|
|
rev = "93aa25bf3ee039c4eb85f402d6adf6977033013b";
|
|
hash = "sha256-gZvIiFpP+eMLD8/xodY7ywWxhWXtethXviVRedW/bgo=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [ pynvim ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ms-jpq/pynvim_pp";
|
|
description = "Dependency to chadtree and coq_nvim plugins";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ GaetanLepage ];
|
|
};
|
|
}
|