nixpkgs/pkgs/development/python-modules/JPype1/default.nix
Jonathan Ringer 9ef6349dcd pythonPackages.JPype: disable for python2
setup.py is no longer python2 compatible
2020-06-16 13:28:58 -07:00

32 lines
593 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, pytest
}:
buildPythonPackage rec {
pname = "JPype1";
version = "0.7.5";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "7bbd25453dc04704d77d854c80acb5537ecb18b9de8a5572e5f22649a2160aaf";
};
checkInputs = [
pytest
];
# required openjdk (easy) but then there were some class path issues
# when running the tests
doCheck = false;
meta = with lib; {
homepage = "https://github.com/originell/jpype/";
license = licenses.asl20;
description = "A Python to Java bridge";
};
}