python3Packages.wikipedia-api: init at 0.6.0

This commit is contained in:
Maksym Balatsko 2023-09-29 07:21:58 -07:00 committed by Yt
parent 187496d97f
commit 0ea03f139c
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, requests
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "Wikipedia-API";
version = "0.6.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "martin-majlis";
repo = "Wikipedia-API";
rev = "v${version}";
hash = "sha256-cmwyQhKbkIpZXkKqqT0X2Lp8OFma2joeb4uxDRPiQe8=";
};
propagatedBuildInputs = [
requests
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "wikipediaapi" ];
meta = with lib; {
description = "Python wrapper for Wikipedia";
homepage = "https://github.com/martin-majlis/Wikipedia-API";
changelog = "https://github.com/martin-majlis/Wikipedia-API/blob/${src.rev}/CHANGES.rst";
license = licenses.mit;
maintainers = with maintainers; [ mbalatsko ];
};
}

View File

@ -14021,6 +14021,8 @@ self: super: with self; {
wikipedia = callPackage ../development/python-modules/wikipedia { };
wikipedia-api = callPackage ../development/python-modules/wikipedia-api { };
wikitextparser = callPackage ../development/python-modules/wikitextparser { };
willow = callPackage ../development/python-modules/willow { };