2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
setuptools,
|
2023-07-15 17:15:38 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage {
|
|
|
|
pname = "std2";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "0-unstable-2024-09-02";
|
2023-11-16 04:20:00 +00:00
|
|
|
pyproject = true;
|
2023-07-15 17:15:38 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ms-jpq";
|
|
|
|
repo = "std2";
|
2024-09-19 14:19:46 +00:00
|
|
|
rev = "205d1f52e9b5438ef2b732c77e1144847cafa8d0";
|
|
|
|
hash = "sha256-WdUefadEk92cGnDI+KbQBpjg+d7KgI6bjlQlyhRRRFA=";
|
2023-07-15 17:15:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
meta = {
|
2023-07-15 17:15:38 +00:00
|
|
|
homepage = "https://github.com/ms-jpq/std2";
|
|
|
|
description = "Dependency to chadtree and coq_nvim plugins";
|
2024-09-19 14:19:46 +00:00
|
|
|
license = lib.licenses.gpl3Plus;
|
|
|
|
maintainers = with lib.maintainers; [ GaetanLepage ];
|
2023-07-15 17:15:38 +00:00
|
|
|
};
|
|
|
|
}
|