pythonPackages.JPype: disable for python2
setup.py is no longer python2 compatible
This commit is contained in:
parent
393f5fc5f1
commit
9ef6349dcd
1 changed files with 2 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue