32 lines
		
	
	
		
			672 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			672 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ stdenv
 | 
						|
, buildPythonPackage
 | 
						|
, fetchPypi
 | 
						|
, google_api_core
 | 
						|
, pytest
 | 
						|
, mock
 | 
						|
}:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "google-cloud-dataproc";
 | 
						|
  version = "0.8.0";
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    sha256 = "f37327079f6bc59fafcfb7ba4855137d26190a8d31fe8ee5180460a5eebd645f";
 | 
						|
  };
 | 
						|
 | 
						|
  checkInputs = [ pytest mock ];
 | 
						|
  propagatedBuildInputs = [ google_api_core ];
 | 
						|
 | 
						|
  checkPhase = ''
 | 
						|
    pytest tests/unit
 | 
						|
  '';
 | 
						|
 | 
						|
  meta = with stdenv.lib; {
 | 
						|
    description = "Google Cloud Dataproc API client library";
 | 
						|
    homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
 | 
						|
    license = licenses.asl20;
 | 
						|
    maintainers = [ maintainers.costrouc ];
 | 
						|
  };
 | 
						|
}
 |