mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
30 lines
596 B
Nix
30 lines
596 B
Nix
{
|
|
buildPythonPackage,
|
|
pytestCheckHook,
|
|
markdown-it-py,
|
|
lib,
|
|
setuptools,
|
|
pytest-regressions,
|
|
}:
|
|
buildPythonPackage {
|
|
pname = "gfm-alerts-to-admonitions";
|
|
version = "0.0";
|
|
format = "pyproject";
|
|
|
|
src = ./.;
|
|
|
|
build-system = [ setuptools ];
|
|
dependencies = [ markdown-it-py ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-regressions
|
|
];
|
|
pythonImportsCheck = [ "gfm_alerts_to_admonitions" ];
|
|
|
|
meta = {
|
|
description = "Transform GFM alerts to nixos-render-docs admonitions";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.traxys ];
|
|
};
|
|
}
|