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