pythonPackages.azure-mgmt-servicefabric: init at 0.2.0

This commit is contained in:
Max Wilson 2019-04-29 19:01:14 -04:00 committed by Wael M. Nasreddine
parent 0795e4b362
commit abb0852c86
No known key found for this signature in database
GPG Key ID: FD437548E0BF0F5F
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchPypi
, msrest
, msrestazure
, azure-common
, azure-mgmt-nspkg
}:
buildPythonPackage rec {
pname = "azure-mgmt-servicefabric";
version = "0.2.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "b2bf2279b8ff8450c35e78e226231655021482fdbda27db09975ebfc983398ad";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
azure-mgmt-nspkg
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure Service Fabric Management Client Library";
homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/servicefabric?view=azure-python;
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
};
}

View File

@ -386,6 +386,8 @@ in {
azure-mgmt-search = callPackage ../development/python-modules/azure-mgmt-search { };
azure-mgmt-servicefabric = callPackage ../development/python-modules/azure-mgmt-servicefabric { };
azure-mgmt-servicebus = callPackage ../development/python-modules/azure-mgmt-servicebus { };
azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { };