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