ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / py4j / default.nix
blob3f7a7e1882322ee9be960a3ebae2c44dbac0651f
1 { buildPythonPackage, fetchPypi, lib }:
3 buildPythonPackage rec {
4   pname = "py4j";
6   version = "0.10.9.7";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "sha256-C25TFbs62lz2KsZR0Qe7LrwC3vPe6dlUjjuqxkTqjbs=";
11   };
13   # No tests in archive
14   doCheck = false;
16   meta = with lib; {
17     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.";
18     homepage = "https://www.py4j.org/";
19     sourceProvenance = with sourceTypes; [
20       fromSource
21       binaryBytecode
22     ];
23     license = licenses.bsd3;
24     maintainers = [ maintainers.shlevy ];
25   };