Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / py4j / default.nix
blobfa7fb2cee1db13cfa784acc6adf4c3bb54bde54d
1 { buildPythonPackage, fetchPypi, lib }:
3 buildPythonPackage rec {
4   pname = "py4j";
6   version = "0.10.9.7";
7   format = "setuptools";
9   src = fetchPypi {
10     inherit pname version;
11     hash = "sha256-C25TFbs62lz2KsZR0Qe7LrwC3vPe6dlUjjuqxkTqjbs=";
12   };
14   # No tests in archive
15   doCheck = false;
17   meta = with lib; {
18     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.";
19     homepage = "https://www.py4j.org/";
20     sourceProvenance = with sourceTypes; [
21       fromSource
22       binaryBytecode
23     ];
24     license = licenses.bsd3;
25     maintainers = [ maintainers.shlevy ];
26   };