Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-cosmosdb / default.nix
blob9d2857c1c74039bd63bf77a847213f9364a79e77
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.3.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.9";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-02DisUN2/auBDhPgE9aUvEvYwoQUQC4NYGD/PQZOl/Y=";
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   };