pythonPackages.wikipedia: remove

as lollypop no longer depends on this library that is
essentially abandoned we should remove it from
nixpkgs.
This commit is contained in:
worldofpeace 2019-08-06 14:08:26 -04:00
parent 8097e63ad8
commit 80396cf18a
2 changed files with 0 additions and 39 deletions

View File

@ -1,37 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
, beautifulsoup4
, requests
, python
}:
buildPythonPackage rec {
pname = "wikipedia";
version = "1.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "db0fad1829fdd441b1852306e9856398204dc0786d2996dd2e0c8bb8e26133b2";
};
propagatedBuildInputs = [
beautifulsoup4
requests
];
checkPhase = ''
runHook preCheck
${python.interpreter} -m unittest discover tests/ '*test.py'
runHook postCheck
'';
meta = with lib; {
description = "Wikipedia API for Python";
homepage = https://github.com/goldsmith/Wikipedia;
license = licenses.mit;
maintainers = [ maintainers.worldofpeace ];
};
}

View File

@ -5003,8 +5003,6 @@ in {
wordfreq = callPackage ../development/python-modules/wordfreq { };
wikipedia = callPackage ../development/python-modules/wikipedia { };
magic-wormhole = callPackage ../development/python-modules/magic-wormhole { };
magic-wormhole-mailbox-server = callPackage ../development/python-modules/magic-wormhole-mailbox-server { };