about summary refs log tree commit diff
path: root/pkgs/development/python-modules/JPype1/default.nix
blob: d449ae8bbf69abff39364f6b3b02fcf844307c46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ buildPythonPackage, fetchPypi, isPy3k, pytest }:

buildPythonPackage rec {
  pname = "JPype1";
  version = "0.6.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "6841523631874a731e1f94e1b1f130686ad3772030eaa3b6946256eeb1d10dd1";
  };

  patches = [ ./set-compiler-language.patch ];

  checkInputs = [ pytest ];

  # ImportError: Failed to import test module: test.testlucene
  doCheck = false;

  meta = {
    homepage = "https://github.com/originell/jpype/";
    license = "License :: OSI Approved :: Apache Software License";
    description = "A Python to Java bridge.";
  };
}