pythonPackages.JPype: disable for python2

setup.py is no longer python2 compatible
This commit is contained in:
Jonathan Ringer 2020-06-16 13:28:57 -07:00
parent 393f5fc5f1
commit 9ef6349dcd

View File

@ -1,12 +1,14 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, pytest
}:
buildPythonPackage rec {
pname = "JPype1";
version = "0.7.5";
disabled = isPy27;
src = fetchPypi {
inherit pname version;