c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
45 lines
855 B
Nix
45 lines
855 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, flit-core
|
|
, linkify-it-py
|
|
, markdown-it-py
|
|
, mdformat
|
|
, mdit-py-plugins
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mdformat-footnote";
|
|
version = "0.1.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "executablebooks";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-DUCBWcmB5i6/HkqxjlU3aTRO7i0n2sj+e/doKB8ffeo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
flit-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
mdformat
|
|
mdit-py-plugins
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"mdformat_footnote"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Footnote format addition for mdformat";
|
|
homepage = "https://github.com/executablebooks/mdformat-footnote";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ aldoborrero ];
|
|
};
|
|
}
|