1{ buildPythonPackage
2, lib
3, fetchPypi
4, six
5, requests
6}:
7
8buildPythonPackage rec {
9 version = "3.2.0";
10 pname = "azure-cosmos";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "4f77cc558fecffac04377ba758ac4e23f076dc1c54e2cf2515f85bc15cbde5c6";
15 };
16
17 propagatedBuildInputs = [ six requests ];
18
19 pythonNamespaces = [ "azure" ];
20
21 # requires an active Azure Cosmos service
22 doCheck = false;
23
24 meta = with lib; {
25 description = "Azure Cosmos DB API";
26 homepage = "https://github.com/Azure/azure-sdk-for-python";
27 license = licenses.mit;
28 maintainers = with maintainers; [ jonringer ];
29 };
30}