python3Packages.azure-mgmt-servicefabricmanagedclusters: init at 1.0.0
This commit is contained in:
parent
67c2e45b2a
commit
fa58d21382
|
@ -0,0 +1,40 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, python
|
||||||
|
, isPy3k
|
||||||
|
, msrest
|
||||||
|
, msrestazure
|
||||||
|
, azure-common
|
||||||
|
, azure-mgmt-core
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "azure-mgmt-servicefabricmanagedclusters";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
extension = "zip";
|
||||||
|
sha256 = "sha256-EJyjolHrt92zWg+IKWFKTapwZaFrwTtSyEIu5/mZXOg=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
msrest
|
||||||
|
msrestazure
|
||||||
|
azure-common
|
||||||
|
azure-mgmt-core
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonNamespaces = [ "azure.mgmt" ];
|
||||||
|
|
||||||
|
# has no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "This is the Microsoft Azure Service Fabric Cluster Management Client Library";
|
||||||
|
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ jonringer ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -845,6 +845,8 @@ in {
|
||||||
|
|
||||||
azure-mgmt-servicefabric = callPackage ../development/python-modules/azure-mgmt-servicefabric { };
|
azure-mgmt-servicefabric = callPackage ../development/python-modules/azure-mgmt-servicefabric { };
|
||||||
|
|
||||||
|
azure-mgmt-servicefabricmanagedclusters = callPackage ../development/python-modules/azure-mgmt-servicefabricmanagedclusters { };
|
||||||
|
|
||||||
azure-mgmt-signalr = callPackage ../development/python-modules/azure-mgmt-signalr { };
|
azure-mgmt-signalr = callPackage ../development/python-modules/azure-mgmt-signalr { };
|
||||||
|
|
||||||
azure-mgmt-sql = callPackage ../development/python-modules/azure-mgmt-sql { };
|
azure-mgmt-sql = callPackage ../development/python-modules/azure-mgmt-sql { };
|
||||||
|
|
Loading…
Reference in New Issue