2020-01-01 07:19:22 -08:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-06-16 13:28:57 -07:00
|
|
|
, isPy27
|
2020-11-29 09:52:28 -08:00
|
|
|
, pythonOlder
|
|
|
|
, typing-extensions
|
2020-01-01 07:19:22 -08:00
|
|
|
, pytest
|
|
|
|
}:
|
2018-02-15 10:17:40 -08:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "JPype1";
|
2021-01-17 16:51:14 -08:00
|
|
|
version = "1.2.1";
|
2020-06-16 13:28:57 -07:00
|
|
|
disabled = isPy27;
|
2018-02-15 10:17:40 -08:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-01-17 16:51:14 -08:00
|
|
|
sha256 = "f210646127d24be73cfc6d807e2cda1c6b2ab39b7a293008e8b46367af6f2204";
|
2018-02-15 10:17:40 -08:00
|
|
|
};
|
|
|
|
|
2020-11-29 09:52:28 -08:00
|
|
|
propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [
|
|
|
|
typing-extensions
|
|
|
|
];
|
|
|
|
|
2020-01-01 07:19:22 -08:00
|
|
|
checkInputs = [
|
|
|
|
pytest
|
|
|
|
];
|
2018-02-15 10:17:40 -08:00
|
|
|
|
2020-01-01 07:19:22 -08:00
|
|
|
# required openjdk (easy) but then there were some class path issues
|
|
|
|
# when running the tests
|
2018-07-26 03:32:07 -07:00
|
|
|
doCheck = false;
|
2018-02-15 10:17:40 -08:00
|
|
|
|
2020-01-01 07:19:22 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/originell/jpype/";
|
2020-01-01 07:19:22 -08:00
|
|
|
license = licenses.asl20;
|
|
|
|
description = "A Python to Java bridge";
|
2018-02-15 10:17:40 -08:00
|
|
|
};
|
|
|
|
}
|