python-packages mistune: init at 0.7.1

This commit is contained in:
Frederik Rietdijk 2015-08-14 23:20:28 +02:00
parent 80b356a918
commit 4b12129b1e

View File

@ -7761,6 +7761,24 @@ let
maintainers = with maintainers; [ thoughtpolice ];
};
};
mistune = buildPythonPackage rec {
version = "0.7.1";
name = "mistune-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/m/mistune/${name}.tar.gz";
sha256 = "6076dedf768348927d991f4371e5a799c6a0158b16091df08ee85ee231d929a7";
};
buildInputs = with self; [nose];
meta = {
decription = "The fastest markdown parser in pure Python";
homepage = https://github.com/lepture/mistune;
license = licenses.bsd3;
};
};
mitmproxy = buildPythonPackage rec {
baseName = "mitmproxy";