Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 451 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, nose 5}: 6 7buildPythonPackage rec { 8 pname = "mistune"; 9 version = "0.8.4"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "59a3429db53c50b5c6bcc8a07f8848cb00d7dc8bdb431a4ab41920d201d4756e"; 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}