summary refs log tree commit diff
path: root/pkgs/development/python-modules/JPype1/default.nix
blob: 9198970cc42cb952b2f2fb856a97b23e008692c8 (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.7.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c16d01cde9c2c955d76d45675e64b06c3255784d49cea4147024e99a01fbbb18";
  };

  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.";
  };
}