pythonPackages.azure-mgmt-msi: init at 1.0.0
This commit is contained in:
parent
9977c6cf19
commit
628d735751
36
pkgs/development/python-modules/azure-mgmt-msi/default.nix
Normal file
36
pkgs/development/python-modules/azure-mgmt-msi/default.nix
Normal file
@ -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-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-network = callPackage ../development/python-modules/azure-mgmt-network { };
|
||||||
|
|
||||||
azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { };
|
azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user