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