Commit 0ea03f13 authored by Maksym Balatsko's avatar Maksym Balatsko Committed by Yt
Browse files

python3Packages.wikipedia-api: init at 0.6.0

parent 187496d9
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };