nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

pythonPackages.azure-mgmt-nspkg: refactor

metadata points to GitHub

authored by

Max Wilson and committed by
Wael M. Nasreddine
ddb3d34d b2c15051

+7 -3
+7 -3
pkgs/development/python-modules/azure-mgmt-nspkg/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , azure-nspkg 5 + , python 6 + , isPy3k 5 7 }: 6 8 7 9 buildPythonPackage rec { ··· 18 16 19 17 propagatedBuildInputs = [ azure-nspkg ]; 20 18 19 + doCheck = false; 20 + 21 21 meta = with pkgs.lib; { 22 22 description = "Microsoft Azure SDK for Python"; 23 - homepage = "https://azure.microsoft.com/en-us/develop/python/"; 24 - license = licenses.asl20; 25 - maintainers = with maintainers; [ olcai ]; 23 + homepage = https://github.com/Azure/azure-sdk-for-python; 24 + license = licenses.mit; 25 + maintainers = with maintainers; [ olcai mwilsoninsight ]; 26 26 }; 27 27 }