9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
45 lines
871 B
Nix
45 lines
871 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, linkify-it-py
|
|
, markdown-it-py
|
|
, mdformat
|
|
, mdit-py-plugins
|
|
, ruamel-yaml
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mdformat-frontmatter";
|
|
version = "2.0.1";
|
|
format = "flit";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "butler54";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-PhT5whtvvcYSs5gHQEsIvV1evhx7jR+3DWFMHrF0uMw=";
|
|
};
|
|
|
|
buildInputs = [
|
|
mdformat
|
|
mdit-py-plugins
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
ruamel-yaml
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"mdformat_frontmatter"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "mdformat plugin to ensure frontmatter is respected";
|
|
homepage = "https://github.com/butler54/mdformat-frontmatter";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ aldoborrero polarmutex ];
|
|
};
|
|
}
|