2017-10-23 13:54:17 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, nose
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "mistune";
|
2017-12-30 11:24:42 +00:00
|
|
|
version = "0.8.3";
|
2017-10-23 13:54:17 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-12-30 11:24:42 +00:00
|
|
|
sha256 = "bc10c33bfdcaa4e749b779f62f60d6e12f8215c46a292d05e486b869ae306619";
|
2017-10-23 13:54:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ nose ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "The fastest markdown parser in pure Python";
|
|
|
|
homepage = https://github.com/lepture/mistune;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|