depot/third_party/nixpkgs/pkgs/development/python-modules/py4j/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

23 lines
809 B
Nix

{ buildPythonPackage, fetchPypi, stdenv }:
buildPythonPackage rec {
pname = "py4j";
version = "0.10.8.1";
src = fetchPypi {
inherit pname version;
extension= "zip";
sha256 = "0x52rjn2s44mbpk9p497p3yba9xnpl6hcaiacklppwqcd8avnac3";
};
# No tests in archive
doCheck = false;
meta = with stdenv.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/";
license = licenses.bsd3;
maintainers = [ maintainers.shlevy ];
};
}