32 lines
		
	
	
		
			684 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			684 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ stdenv
 | 
						|
, buildPythonPackage
 | 
						|
, fetchPypi
 | 
						|
, google_api_core
 | 
						|
, pytest
 | 
						|
, mock
 | 
						|
}:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "google-cloud-bigquery-datatransfer";
 | 
						|
  version = "0.3.0";
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    sha256 = "02bf1a508ffbc730904fd8a5e7d7c33946f0aa539127c1b1e235dfdedd7bc9a5";
 | 
						|
  };
 | 
						|
 | 
						|
  checkInputs = [ pytest mock ];
 | 
						|
  propagatedBuildInputs = [ google_api_core ];
 | 
						|
 | 
						|
  checkPhase = ''
 | 
						|
    pytest tests/unit
 | 
						|
  '';
 | 
						|
 | 
						|
  meta = with stdenv.lib; {
 | 
						|
    description = "BigQuery Data Transfer API client library";
 | 
						|
    homepage = https://github.com/GoogleCloudPlatform/google-cloud-python;
 | 
						|
    license = licenses.asl20;
 | 
						|
    maintainers = [ maintainers.costrouc ];
 | 
						|
  };
 | 
						|
}
 |