Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-security / default.nix
blob60271f7c038197e45ebd7c803a16834426000055
1 { lib
2 , azure-common
3 , azure-mgmt-core
4 , buildPythonPackage
5 , fetchPypi
6 , isodate
7 , pythonOlder
8 , setuptools
9 }:
11 buildPythonPackage rec {
12   pname = "azure-mgmt-security";
13   version = "6.0.0";
14   fpyproject = true;
16   disabled = pythonOlder "3.8";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-zq/BhpiZBnEQvYMMXMmLybjzLY6oQMofaTsaX1Kl+LA=";
21   };
23   nativeBuildInputs = [
24     setuptools
25   ];
27   propagatedBuildInputs = [
28     azure-common
29     azure-mgmt-core
30     isodate
31   ];
33   # no tests included
34   doCheck = false;
36   pythonImportsCheck = [
37     "azure.common"
38     "azure.mgmt.security"
39   ];
41   meta = with lib; {
42     description = "Microsoft Azure Security Center Management Client Library for Python";
43     homepage = "https://github.com/Azure/azure-sdk-for-python";
44     changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-security_${version}/sdk/security/azure-mgmt-security/CHANGELOG.md";
45     license = licenses.mit;
46     maintainers = with maintainers; [ jonringer ];
47   };