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:
parent
8711da60ba
commit
6de03472f4
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue