pythonPackages.azure-mgmt-powerbiembedded: init at 2.0.0

This commit is contained in:
Max Wilson 2019-04-29 18:55:13 -04:00 committed by Wael M. Nasreddine
parent efa438331f
commit 0b5759cd31
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-powerbiembedded";
version = "2.0.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "2f05be73f2a086c579a78fc900e3b2ae14ccde5bcec54e29dfc73e626b377476";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
azure-mgmt-nspkg
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure Power BI Embedded Management Client Library";
homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/power-bi?view=azure-python;
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
};
}

View File

@ -366,6 +366,8 @@ in {
azure-mgmt-policyinsights = callPackage ../development/python-modules/azure-mgmt-policyinsights { };
azure-mgmt-powerbiembedded = callPackage ../development/python-modules/azure-mgmt-powerbiembedded { };
azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { };
azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { };