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 { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy27
, pytest , pytest
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "JPype1"; pname = "JPype1";
version = "0.7.5"; version = "0.7.5";
disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;