nixpkgs/pkgs/development/python-modules/mwparserfromhell/default.nix
2021-01-25 18:31:47 +01:00

22 lines
499 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "mwparserfromhell";
version = "0.6";
src = fetchPypi {
inherit pname version;
sha256 = "75787b6ab140ab267b313d37d045f3276f5dc6a9741074eddfbabc1635cb2efc";
};
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 ];
};
}