nixpkgs/pkgs/development/python-modules/JPype1/default.nix

25 lines
599 B
Nix
Raw Normal View History

2018-07-26 12:32:07 +02:00
{ buildPythonPackage, fetchPypi, isPy3k, pytest }:
2018-02-15 19:17:40 +01:00
buildPythonPackage rec {
pname = "JPype1";
2018-04-04 20:00:14 +02:00
version = "0.6.3";
2018-02-15 19:17:40 +01:00
src = fetchPypi {
inherit pname version;
2018-04-04 20:00:14 +02:00
sha256 = "6841523631874a731e1f94e1b1f130686ad3772030eaa3b6946256eeb1d10dd1";
2018-02-15 19:17:40 +01: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 19:17:40 +01:00
meta = {
homepage = "https://github.com/originell/jpype/";
license = "License :: OSI Approved :: Apache Software License";
description = "A Python to Java bridge.";
};
}