41 lines
		
	
	
		
			797 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			797 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib
 | 
						|
, buildPythonPackage
 | 
						|
, fetchPypi
 | 
						|
, python
 | 
						|
, isPy3k
 | 
						|
, msrest
 | 
						|
, msrestazure
 | 
						|
, azure-common
 | 
						|
, azure-mgmt-nspkg
 | 
						|
}:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "azure-mgmt-servicefabric";
 | 
						|
  version = "0.5.0";
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    extension = "zip";
 | 
						|
    sha256 = "5771f24516c8d4a27f5569f23f3a606f6f106e4ad502eec7f38aedfcd3eadc74";
 | 
						|
  };
 | 
						|
 | 
						|
  propagatedBuildInputs = [
 | 
						|
    msrest
 | 
						|
    msrestazure
 | 
						|
    azure-common
 | 
						|
    azure-mgmt-nspkg
 | 
						|
  ];
 | 
						|
 | 
						|
  pythonNamespaces = [ "azure.mgmt" ];
 | 
						|
 | 
						|
  # has no tests
 | 
						|
  doCheck = false;
 | 
						|
 | 
						|
  meta = with lib; {
 | 
						|
    description = "This is the Microsoft Azure Service Fabric Management Client Library";
 | 
						|
    homepage = "https://github.com/Azure/azure-sdk-for-python";
 | 
						|
    license = licenses.mit;
 | 
						|
    maintainers = with maintainers; [ maxwilson ];
 | 
						|
  };
 | 
						|
}
 |