nixpkgs/pkgs/development/python-modules/wikitextparser/default.nix
Viorel-Cătălin Răpițeanu a391e9469a python3Packages.wikitextparser: init at 0.54.0
Add Python package wikitextparser.

Homepage: https://github.com/5j9/wikitextparser

Easily extract and/or manipulate templates, template parameters, parser
functions, tables, external links, wikilinks, lists, etc. found in wikitexts.
2023-09-05 14:45:25 +03:00

40 lines
837 B
Nix

{ buildPythonPackage
, fetchFromGitHub
, lib
, pytestCheckHook
, regex
, wcwidth
}:
buildPythonPackage rec {
pname = "wikitextparser";
version = "0.54.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "5j9";
repo = "wikitextparser";
rev = "v${version}";
hash = "sha256-AGQfjUNxeleuTS200QMdZS8CSD2t4ah5NMm9TIYjVHk=";
};
propagatedBuildInputs = [
wcwidth
regex
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "wikitextparser" ];
meta = {
homepage = "https://github.com/5j9/wikitextparser";
description = "A simple parsing tool for MediaWiki's wikitext markup";
changelog = "https://github.com/5j9/wikitextparser/blob/v${version}/CHANGELOG.rst";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ rapiteanu ];
};
}