summary refs log blame commit diff
path: root/pkgs/development/python-modules/google-cloud-testutils/default.nix
blob: d4551b4954a5ee7bda81586feaf07b5c84ab0f86 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                
 
                        
                                   
                    
 

                          
                                                                   

    
                                                    
 
                          
                  
 

                                        
                    
                                                                  
                                                                 
                             
                                                        

    
{ lib, buildPythonPackage, fetchPypi, click, google-auth, six }:

buildPythonPackage rec {
  pname = "google-cloud-testutils";
  version = "1.3.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-X85NRgGZt7+OpL4poOyS+UWec4fuABiTxEYyFpkUpqs=";
  };

  propagatedBuildInputs = [ click google-auth six ];

  # does not contain tests
  doCheck = false;

  pythonImportsCheck = [ "test_utils" ];

  meta = with lib; {
    description = "System test utilities for google-cloud-python";
    homepage = "https://github.com/googleapis/python-test-utils";
    license = licenses.asl20;
    maintainers = with maintainers; [ SuperSandro2000 ];
  };
}