Files
nixpkgs/pkgs/development/python-modules/wikitextparser/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

44 lines
918 B
Nix

{
buildPythonPackage,
fetchFromGitHub,
flit-core,
lib,
setuptools,
pytestCheckHook,
regex,
wcwidth,
}:
buildPythonPackage rec {
pname = "wikitextparser";
version = "0.55.13";
format = "pyproject";
src = fetchFromGitHub {
owner = "5j9";
repo = "wikitextparser";
rev = "v${version}";
hash = "sha256-qLctOX0BsKAn2JzfmV2sTLJ/KcNfaJFAjOB3pxd5LQI=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
flit-core
wcwidth
regex
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "wikitextparser" ];
meta = {
homepage = "https://github.com/5j9/wikitextparser";
description = "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 ];
};
}