pythonPackages.azure-mgmt-msi: init at 1.0.0

wip/yesman
Max Wilson 5 years ago committed by Wael M. Nasreddine
parent 9977c6cf19
commit 628d735751
No known key found for this signature in database
GPG Key ID: FD437548E0BF0F5F
  1. 36
      pkgs/development/python-modules/azure-mgmt-msi/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchPypi
, msrest
, msrestazure
, azure-common
, azure-mgmt-nspkg
}:
buildPythonPackage rec {
pname = "azure-mgmt-msi";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "0n4gbwk843z66hhpcp1kcrnwqkzygbbc2ma01r9asgfv4nmklvyl";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
azure-mgmt-nspkg
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure MSI Management Client Library";
homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-msi;
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
};
}

@ -358,6 +358,8 @@ in {
azure-mgmt-monitor = callPackage ../development/python-modules/azure-mgmt-monitor { };
azure-mgmt-msi = callPackage ../development/python-modules/azure-mgmt-msi { };
azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { };
azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { };

Loading…
Cancel
Save