pythonPackages.azure-nspkg: refactor
updated license and homepage
This commit is contained in:
parent
ddb3d34d88
commit
e0c1e74805
|
@ -1,6 +1,8 @@
|
||||||
{ pkgs
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, python
|
||||||
|
, isPy3k
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -13,10 +15,12 @@ buildPythonPackage rec {
|
||||||
sha256 = "e7d3cea6af63e667d87ba1ca4f8cd7cb4dfca678e4c55fc1cedb320760e39dd0";
|
sha256 = "e7d3cea6af63e667d87ba1ca4f8cd7cb4dfca678e4c55fc1cedb320760e39dd0";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with pkgs.lib; {
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
description = "Microsoft Azure SDK for Python";
|
description = "Microsoft Azure SDK for Python";
|
||||||
homepage = "https://azure.microsoft.com/en-us/develop/python/";
|
homepage = https://github.com/Azure/azure-sdk-for-python;
|
||||||
license = licenses.asl20;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ olcai ];
|
maintainers = with maintainers; [ olcai mwilsoninsight ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue