depot/third_party/nixpkgs/pkgs/development/python-modules/py4j/default.nix
Default email 889482aab3 Project import generated by Copybara.
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
2022-06-26 12:26:21 +02:00

26 lines
864 B
Nix

{ buildPythonPackage, fetchPypi, lib }:
buildPythonPackage rec {
pname = "py4j";
version = "0.10.9.5";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-J2pKPFohVN8YYO8zA6knRg4C6XsEfcCkfBw/uMzjTbY=";
};
# No tests in archive
doCheck = false;
meta = with lib; {
description = "Py4J enables Python programs running in a Python interpreter to dynamically access Java objects in a Java Virtual Machine. Methods are called as if the Java objects resided in the Python interpreter and Java collections can be accessed through standard Python collection methods. Py4J also enables Java programs to call back Python objects.";
homepage = "https://www.py4j.org/";
sourceProvenance = with sourceTypes; [
fromSource
binaryBytecode
];
license = licenses.bsd3;
maintainers = [ maintainers.shlevy ];
};
}