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