depot/third_party/nixpkgs/pkgs/development/python-modules/std2/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

28 lines
624 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage {
pname = "std2";
version = "unstable-2023-10-07";
pyproject = true;
src = fetchFromGitHub {
owner = "ms-jpq";
repo = "std2";
rev = "6332e559ee51c3a7c956804afdd7e1cc6ad47965";
hash = "sha256-huN7P/Ws6anrFXDG7L5xxMenS25BHquV9cMi1s7WFJ4=";
};
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 ];
};
}