Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, markdown 5, isPy27 6}: 7 8buildPythonPackage rec { 9 pname = "python-markdown-math"; 10 version = "0.7"; 11 disabled = isPy27; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "17a12175e8b2052a1c3402fca410841c551c678046293b1f7c280ccfe7b302a0"; 16 }; 17 18 checkInputs = [ markdown ]; 19 20 meta = { 21 description = "Math extension for Python-Markdown"; 22 homepage = "https://github.com/mitya57/python-markdown-math"; 23 license = lib.licenses.bsd3; 24 maintainers = with lib.maintainers; [ klntsky ]; 25 }; 26}