31 lines
		
	
	
		
			672 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			672 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { stdenv
 | |
| , buildPythonPackage
 | |
| , fetchPypi
 | |
| , google_api_core
 | |
| , pytest
 | |
| }:
 | |
| 
 | |
| buildPythonPackage rec {
 | |
|   pname = "google-cloud-bigquery-datatransfer";
 | |
|   version = "0.1.1";
 | |
| 
 | |
|   src = fetchPypi {
 | |
|     inherit pname version;
 | |
|     sha256 = "f5b5d0de43805fa9ebb620c58e1d27e6d32d2fc8e9a2f954ee170f7a026c8757";
 | |
|   };
 | |
| 
 | |
|   checkInputs = [ pytest ];
 | |
|   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 ];
 | |
|   };
 | |
| }
 | 
