Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pythonPackages.py4j: Init at 0.10.6.

(cherry picked from commit 4322f2b8c86c9f2d36be851d86acd8b1b8346cdf)

+24
+22
pkgs/development/python-modules/py4j/default.nix
··· 1 + { buildPythonPackage, fetchPypi, stdenv }: 2 + 3 + buildPythonPackage rec { 4 + pname = "py4j"; 5 + 6 + version = "0.10.6"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + extension= "zip"; 11 + sha256 = "10shayghsmcdr03w12a7sdm6vsxpjm8alw3ym3mr1hki45yarryk"; 12 + }; 13 + 14 + propagatedBuildInputs = [ ]; 15 + 16 + meta = with stdenv.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 + license = licenses.bsd3; 20 + maintainers = [ maintainers.shlevy ]; 21 + }; 22 + }
+2
pkgs/top-level/python-packages.nix
··· 1634 1634 1635 1635 proboscis = callPackage ../development/python-modules/proboscis {}; 1636 1636 1637 + py4j = callPackage ../development/python-modules/py4j { }; 1638 + 1637 1639 pyechonest = self.buildPythonPackage rec { 1638 1640 name = "pyechonest-8.0.2"; 1639 1641