Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "mwparserfromhell"; 8 version = "0.5.4"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "aaf5416ab9b75e99e286f8a4216f77a2f7d834afd4c8f81731e701e59bf99305"; 13 }; 14 15 meta = with stdenv.lib; { 16 description = "MWParserFromHell is a parser for MediaWiki wikicode"; 17 homepage = "https://mwparserfromhell.readthedocs.io/en/latest/"; 18 license = licenses.mit; 19 maintainers = with maintainers; [ melling ]; 20 }; 21}