My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/mistletoe/default.nix

22 lines
497 B

{ 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 ];
};
}