Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-azure-mgmt-devspaces/versions
		
			
				
	
	
		
			35 lines
		
	
	
		
			693 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			693 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib
 | 
						|
, buildPythonPackage
 | 
						|
, fetchPypi
 | 
						|
, msrestazure
 | 
						|
, azure-common
 | 
						|
, azure-mgmt-nspkg
 | 
						|
}:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "azure-mgmt-devspaces";
 | 
						|
  version = "0.2.0";
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    extension = "zip";
 | 
						|
    sha256 = "0dvjsr9i87j1ggbj3dcmgifpk64xr5f5ziwf7z1fwkcx0szcid7k";
 | 
						|
  };
 | 
						|
 | 
						|
  propagatedBuildInputs = [
 | 
						|
    msrestazure
 | 
						|
    azure-common
 | 
						|
    azure-mgmt-nspkg
 | 
						|
  ];
 | 
						|
 | 
						|
  # has no tests
 | 
						|
  doCheck = false;
 | 
						|
 | 
						|
  meta = with lib; {
 | 
						|
    description = "This is the Microsoft Azure Dev Spaces Client Library";
 | 
						|
    homepage = "https://github.com/Azure/azure-sdk-for-python";
 | 
						|
    license = licenses.mit;
 | 
						|
    maintainers = with maintainers; [ mwilsoninsight ];
 | 
						|
  };
 | 
						|
}
 |