mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 12:03:21 +00:00
22 lines
501 B
Nix
22 lines
501 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mwparserfromhell";
|
|
version = "0.6.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "d3f74c0101f81ff73c61985b67f2e7048a30dc5f6a578ea1544e69133988d874";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "MWParserFromHell is a parser for MediaWiki wikicode";
|
|
homepage = "https://mwparserfromhell.readthedocs.io/en/latest/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ melling ];
|
|
};
|
|
}
|