depot/third_party/nixpkgs/pkgs/development/python-modules/wikipedia-api/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

35 lines
808 B
Nix

{ 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 ];
};
}