mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
31 lines
596 B
Nix
31 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 ];
|
||
|
};
|
||
|
}
|