Commit ab9afce1 authored by Robert Schütz's avatar Robert Schütz
Browse files

python3Packages.mdformat-footnote: modernize

parent 6442a6f8
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -19,20 +19,20 @@ buildPythonPackage rec {
    hash = "sha256-QiekcxKfJGWog8rfSL6VIDHdo7rpw8ftl/dDJpVpdUg=";
  };

  nativeBuildInputs = [ flit-core ];
  build-system = [ flit-core ];

  propagatedBuildInputs = [
  dependencies = [
    mdformat
    mdit-py-plugins
  ];

  pythonImportsCheck = [ "mdformat_footnote" ];

  meta = with lib; {
  meta = {
    description = "Footnote format addition for mdformat";
    homepage = "https://github.com/executablebooks/mdformat-footnote";
    changelog = "https://github.com/executablebooks/mdformat-footnote/releases/tag/${src.tag}";
    license = licenses.mit;
    maintainers = with maintainers; [ aldoborrero ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ aldoborrero ];
  };
}