25 lines
591 B
Nix
Raw Normal View History

{ buildPythonPackage, fetchPypi, pytest }:
2018-02-15 13:17:40 -05:00
buildPythonPackage rec {
pname = "JPype1";
2019-12-19 20:31:03 +01:00
version = "0.7.1";
2018-02-15 13:17:40 -05:00
src = fetchPypi {
inherit pname version;
2019-12-19 20:31:03 +01:00
sha256 = "c16d01cde9c2c955d76d45675e64b06c3255784d49cea4147024e99a01fbbb18";
2018-02-15 13:17:40 -05: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 13:17:40 -05:00
meta = {
homepage = "https://github.com/originell/jpype/";
license = "License :: OSI Approved :: Apache Software License";
description = "A Python to Java bridge.";
};
}