Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 21 lines 499 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "mwparserfromhell"; 8 version = "0.6"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "75787b6ab140ab267b313d37d045f3276f5dc6a9741074eddfbabc1635cb2efc"; 13 }; 14 15 meta = with 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}