pythonPackages.aioeventlet: remove
The upstream repo/homepage has long gone, there are no depndencies on that package.
This commit is contained in:
parent
a8afbb45c1
commit
b8de584df4
@ -1,35 +0,0 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, eventlet
|
||||
, trollius ? null
|
||||
, mock
|
||||
, python
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aioeventlet";
|
||||
# version is called 0.5.1 on PyPI, but the filename is aioeventlet-0.5.2.tar.gz
|
||||
version = "0.5.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "cecb51ea220209e33b53cfb95124d90e4fcbee3ff8ba8a179a57120b8624b16a";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ eventlet trollius ];
|
||||
buildInputs = [ mock ];
|
||||
|
||||
# 2 tests error out
|
||||
doCheck = false;
|
||||
checkPhase = ''
|
||||
${python.interpreter} runtests.py
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "aioeventlet implements the asyncio API (PEP 3156) on top of eventlet. It makes";
|
||||
homepage = "https://pypi.org/project/aioeventlet/";
|
||||
license = licenses.asl20;
|
||||
};
|
||||
|
||||
}
|
@ -247,8 +247,6 @@ in {
|
||||
|
||||
aioesphomeapi = callPackage ../development/python-modules/aioesphomeapi { };
|
||||
|
||||
aioeventlet = callPackage ../development/python-modules/aioeventlet { };
|
||||
|
||||
aioextensions = callPackage ../development/python-modules/aioextensions { };
|
||||
|
||||
aiofiles = callPackage ../development/python-modules/aiofiles { };
|
||||
|
Loading…
Reference in New Issue
Block a user