12 buildPythonPackage rec {
13 pname = "wikitextparser";
17 src = fetchFromGitHub {
19 repo = "wikitextparser";
21 hash = "sha256-g0Hvxw8evmCebM2joGT7XMnakVjDG74VJmZhlvUiQMU=";
24 nativeBuildInputs = [ setuptools ];
26 propagatedBuildInputs = [
32 nativeCheckInputs = [ pytestCheckHook ];
34 pythonImportsCheck = [ "wikitextparser" ];
37 homepage = "https://github.com/5j9/wikitextparser";
38 description = "Simple parsing tool for MediaWiki's wikitext markup";
39 changelog = "https://github.com/5j9/wikitextparser/blob/v${version}/CHANGELOG.rst";
40 license = lib.licenses.gpl3Only;
41 maintainers = with lib.maintainers; [ rapiteanu ];