mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
python3Packages.azure-mgmt-security: init at 0.3.0
This commit is contained in:
parent
6b41c90abe
commit
f7ee6a66f6
@ -0,0 +1,31 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, isPy27
|
||||
, azure-common
|
||||
, msrest
|
||||
, msrestazure
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.3.0";
|
||||
pname = "azure-mgmt-security";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0z766424783a6y5dp5ybxssb0bfzqb8kpa6zra8ccnbfg4fn478v";
|
||||
extension = "zip";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ azure-common msrest msrestazure ];
|
||||
|
||||
# no tests included
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "azure.common" "azure.mgmt.security" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Microsoft Azure Security Center Management Client Library for Python";
|
||||
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jonringer ];
|
||||
};
|
||||
}
|
@ -427,6 +427,8 @@ in {
|
||||
|
||||
azure-mgmt-search = callPackage ../development/python-modules/azure-mgmt-search { };
|
||||
|
||||
azure-mgmt-security = callPackage ../development/python-modules/azure-mgmt-security { };
|
||||
|
||||
azure-mgmt-servicebus = callPackage ../development/python-modules/azure-mgmt-servicebus { };
|
||||
|
||||
azure-mgmt-servicefabric = callPackage ../development/python-modules/azure-mgmt-servicefabric { };
|
||||
|
Loading…
Reference in New Issue
Block a user