about summary refs log tree commit diff
path: root/pkgs/development/python-modules/JPype1/default.nix
blob: 44ec253fbf7894a5934e0770fd3c146c7dafd339 (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, 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.";
  };
}