Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-py4j/versions
		
			
				
	
	
		
			24 lines
		
	
	
		
			807 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			807 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 ];
 | 
						|
  };
 | 
						|
}
 |