python.pkgs.JPype1: disable tests
This commit is contained in:
parent
ac7a998fae
commit
9e751587c7
@ -1,4 +1,4 @@
|
|||||||
{ buildPythonPackage, fetchPypi, isPy3k }:
|
{ buildPythonPackage, fetchPypi, isPy3k, pytest }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "JPype1";
|
pname = "JPype1";
|
||||||
@ -11,8 +11,10 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
patches = [ ./set-compiler-language.patch ];
|
patches = [ ./set-compiler-language.patch ];
|
||||||
|
|
||||||
# Test loader complains about non-test module on python3.
|
checkInputs = [ pytest ];
|
||||||
doCheck = !isPy3k;
|
|
||||||
|
# ImportError: Failed to import test module: test.testlucene
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://github.com/originell/jpype/";
|
homepage = "https://github.com/originell/jpype/";
|
||||||
|
Loading…
Reference in New Issue
Block a user