My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/mwparserfromhell/default.nix

28 lines
584 B

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pytest-runner
}:
buildPythonPackage rec {
pname = "mwparserfromhell";
version = "0.6.4";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-kr7JUorjTScok8yvK1J9+FwxT/KM+7MFY0BGewldg0w=";
};
checkInputs = [
pytestCheckHook
pytest-runner
];
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 ];
};
}