depot/third_party/nixpkgs/pkgs/development/python-modules/mistletoe/default.nix
Default email 81047829ea Project import generated by Copybara.
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
2022-02-10 15:34:41 -05:00

22 lines
497 B
Nix

{ lib
, isPy3k
, fetchPypi
, buildPythonPackage }:
buildPythonPackage rec {
pname = "mistletoe";
version = "0.8.2";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-ouNU5lPym8r1WZ2JSFEhGaxgN+nC+O53851VRQ59Gmw=";
};
meta = with lib; {
description = "A fast, extensible Markdown parser in pure Python.";
homepage = "https://github.com/miyuchina/mistletoe";
license = licenses.mit;
maintainers = with maintainers; [ eadwu ];
};
}