python2Packages.aioconsole: disable

```
  Processing ./aioconsole-0.3.0-py2-none-any.whl
  ERROR: Package 'aioconsole' requires a different Python: 2.7.18 not in '>=3.6'
```
This commit is contained in:
Jonathan Ringer 2020-10-16 09:38:01 -07:00 committed by Jon
parent 8711da60ba
commit 6de03472f4

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi }:
{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
# This package provides a binary "apython" which sometimes invokes
# [sys.executable, '-m', 'aioconsole'] as a subprocess. If apython is
@ -11,6 +11,7 @@
buildPythonPackage rec {
pname = "aioconsole";
version = "0.3.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;