evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-monitor / default.nix
blob1a75b23ccc856d8efc22c9d24b5e1a854e13d3c3
2   lib,
3   azure-common,
4   azure-mgmt-core,
5   buildPythonPackage,
6   fetchPypi,
7   isodate,
8   pythonOlder,
9   typing-extensions,
12 buildPythonPackage rec {
13   pname = "azure-mgmt-monitor";
14   version = "6.0.2";
15   format = "setuptools";
17   disabled = pythonOlder "3.7";
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-X/v1AOSZq3kSsbptJs7yZIDZrkEVMgGbt41yViGW4Hs=";
22   };
24   propagatedBuildInputs = [
25     isodate
26     azure-common
27     azure-mgmt-core
28   ] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ];
30   pythonNamespaces = [ "azure.mgmt" ];
32   # Module has no tests
33   doCheck = false;
35   meta = with lib; {
36     description = "This is the Microsoft Azure Monitor Client Library";
37     homepage = "https://github.com/Azure/azure-sdk-for-python";
38     license = licenses.mit;
39     maintainers = with maintainers; [ maxwilson ];
40   };