mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
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 {
|
||||
pname = "JPype1";
|
||||
@ -11,8 +11,10 @@ buildPythonPackage rec {
|
||||
|
||||
patches = [ ./set-compiler-language.patch ];
|
||||
|
||||
# Test loader complains about non-test module on python3.
|
||||
doCheck = !isPy3k;
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
# ImportError: Failed to import test module: test.testlucene
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/originell/jpype/";
|
||||
|
Loading…
Reference in New Issue
Block a user