Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-cosmosdb / default.nix
blob0448801856be16cda0cb8c8975ba51c349a56a83
1 { lib
2 , azure-common
3 , azure-mgmt-core
4 , buildPythonPackage
5 , fetchPypi
6 , isodate
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "azure-mgmt-cosmosdb";
12   version = "9.4.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.9";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-yruCHNRGsJ5z0kwxwoemD8w2I0iPH/qTNcaSJn55w0E=";
20   };
22   propagatedBuildInputs = [
23     isodate
24     azure-common
25     azure-mgmt-core
26   ];
28   # Module has no tests
29   doCheck = false;
31   pythonImportsCheck = [
32     "azure.mgmt.cosmosdb"
33   ];
35   meta = with lib; {
36     description = "Module to work with the Microsoft Azure Cosmos DB Management";
37     homepage = "https://github.com/Azure/azure-sdk-for-python";
38     changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-cosmosdb_${version}/sdk/cosmos/azure-mgmt-cosmosdb/CHANGELOG.md";
39     license = licenses.mit;
40     maintainers = with maintainers; [ maxwilson ];
41   };