2019-06-16 21:59:06 +02:00
|
|
|
{ buildPythonPackage, fetchPypi, pytest }:
|
2018-02-15 19:17:40 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "JPype1";
|
2019-10-24 08:47:23 +02:00
|
|
|
version = "0.7.0";
|
2018-02-15 19:17:40 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 08:47:23 +02:00
|
|
|
sha256 = "1630439d5b0fb49e2878b43a1a1f074f9d4f46520f525569e14f1f0f9399f871";
|
2018-02-15 19:17:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./set-compiler-language.patch ];
|
|
|
|
|
2018-07-26 12:32:07 +02:00
|
|
|
checkInputs = [ pytest ];
|
|
|
|
|
|
|
|
# ImportError: Failed to import test module: test.testlucene
|
|
|
|
doCheck = false;
|
2018-02-15 19:17:40 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/originell/jpype/";
|
|
|
|
license = "License :: OSI Approved :: Apache Software License";
|
|
|
|
description = "A Python to Java bridge.";
|
|
|
|
};
|
|
|
|
}
|