pythonPackages.txaio: disabled python2

Processing ./txaio-20.4.1-py2.py3-none-any.whl
  ERROR: Package 'txaio' requires a different Python: 2.7.18 not in '>=3.5'
This commit is contained in:
Jonathan Ringer 2020-06-08 11:43:20 -07:00 committed by Frederik Rietdijk
parent 0fd6b52880
commit 7670a03a63

View File

@ -1,8 +1,9 @@
{ stdenv, buildPythonPackage, fetchPypi, pytest, mock, six, twisted,isPy37 }:
{ stdenv, buildPythonPackage, fetchPypi, pytest, mock, six, twisted, isPy37, isPy27 }:
buildPythonPackage rec {
pname = "txaio";
version = "20.4.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;