9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
40 lines
756 B
Nix
40 lines
756 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, mdformat
|
|
, mdformat-gfm
|
|
, mdit-py-plugins
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mdformat-mkdocs";
|
|
version = "1.0.2";
|
|
format = "flit";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KyleKing";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-H+wqgcXNrdrZ5aQvZ7XM8YpBpVZM6pFtsANC00UZ0jM=";
|
|
};
|
|
|
|
buildInputs = [
|
|
mdformat
|
|
mdformat-gfm
|
|
mdit-py-plugins
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"mdformat_mkdocs"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "mdformat plugin for MkDocs";
|
|
homepage = "https://github.com/KyleKing/mdformat-mkdocs";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ aldoborrero ];
|
|
};
|
|
}
|