haskell-language-server/myst-parser.nix
Junyoung "Clare" Jang 11241379e0
Update flake to use fourmolu plugin in GHC 9 (#2482)
* Update nixpkgs to add fourmolu plugin to GHC 9

* Fix GHCIDE build in nix
2021-12-13 23:09:17 +00:00

34 lines
625 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, markdown-it-py
, mdit-py-plugins
, pyyaml
, docutils
, sphinx
}:
buildPythonPackage rec {
pname = "myst-parser";
version = "0.16.0";
src = fetchPypi {
inherit pname version;
sha256 = "14lzbhciw7ksi219lrcy9afglmg5mx0rmfvrr2x8ssghv4kf8cdy";
};
propagatedBuildInputs = [
markdown-it-py
mdit-py-plugins
pyyaml
docutils
sphinx
];
meta = with lib; {
description = "An extended commonmark compliant parser, with bridges to docutils & sphinx";
homepage = https://github.com/executablebooks/MyST-Parser;
license = licenses.mit;
};
}