mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
pythonPackages.azure-mgmt-managementgroups: init at 0.2.0
This commit is contained in:
parent
75a0b554f6
commit
58a2e1ea3a
@ -0,0 +1,38 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, msrest
|
||||
, msrestazure
|
||||
, azure-common
|
||||
, azure-mgmt-nspkg
|
||||
, isPy3k
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "azure-mgmt-managementgroups";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
sha256 = "3d5237947458dc94b4a392141174b1c1258d26611241ee104e9006d1d798f682";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
msrest
|
||||
msrestazure
|
||||
azure-common
|
||||
] ++ lib.optionals (!isPy3k) [
|
||||
azure-mgmt-nspkg
|
||||
];
|
||||
|
||||
# has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "This is the Microsoft Azure Management Groups Client Library";
|
||||
homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-managementgroups;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ mwilsoninsight ];
|
||||
};
|
||||
}
|
@ -346,6 +346,8 @@ in {
|
||||
|
||||
azure-mgmt-machinelearningcompute = callPackage ../development/python-modules/azure-mgmt-machinelearningcompute { };
|
||||
|
||||
azure-mgmt-managementgroups = callPackage ../development/python-modules/azure-mgmt-managementgroups { };
|
||||
|
||||
azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { };
|
||||
|
||||
azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { };
|
||||
|
Loading…
Reference in New Issue
Block a user