32 lines
		
	
	
		
			773 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			773 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, buildPythonPackage, fetchPypi, isPy27
 | 
						|
, azure-common
 | 
						|
, msrest
 | 
						|
, msrestazure
 | 
						|
}:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  version = "0.4.0";
 | 
						|
  pname = "azure-mgmt-imagebuilder";
 | 
						|
  disabled = isPy27;
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    sha256 = "4c9291bf16b40b043637e5e4f15650f71418ac237393e62219cab478a7951733";
 | 
						|
    extension = "zip";
 | 
						|
  };
 | 
						|
 | 
						|
  propagatedBuildInputs = [ azure-common msrest msrestazure ];
 | 
						|
 | 
						|
  # no tests included
 | 
						|
  doCheck = false;
 | 
						|
 | 
						|
  pythonImportsCheck = [ "azure.common" "azure.mgmt.imagebuilder" ];
 | 
						|
 | 
						|
  meta = with lib; {
 | 
						|
    description = "Microsoft Azure Image Builder Client Library for Python";
 | 
						|
    homepage = "https://github.com/Azure/azure-sdk-for-python";
 | 
						|
    license = licenses.mit;
 | 
						|
    maintainers = with maintainers; [ jonringer ];
 | 
						|
  };
 | 
						|
}
 |