1{ lib
2, buildPythonPackage
3, fetchPypi
4, nose
5}:
6
7buildPythonPackage rec {
8 pname = "mistune";
9 version = "0.8.3";
10 name = "${pname}-${version}";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "bc10c33bfdcaa4e749b779f62f60d6e12f8215c46a292d05e486b869ae306619";
15 };
16
17 buildInputs = [ nose ];
18
19 meta = with lib; {
20 description = "The fastest markdown parser in pure Python";
21 homepage = https://github.com/lepture/mistune;
22 license = licenses.bsd3;
23 };
24}