1{ buildPythonPackage, fetchPypi, isPy3k, pytest }:
2
3buildPythonPackage rec {
4 pname = "JPype1";
5 version = "0.6.3";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "6841523631874a731e1f94e1b1f130686ad3772030eaa3b6946256eeb1d10dd1";
10 };
11
12 patches = [ ./set-compiler-language.patch ];
13
14 checkInputs = [ pytest ];
15
16 # ImportError: Failed to import test module: test.testlucene
17 doCheck = false;
18
19 meta = {
20 homepage = "https://github.com/originell/jpype/";
21 license = "License :: OSI Approved :: Apache Software License";
22 description = "A Python to Java bridge.";
23 };
24}