Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / azure-cosmos / default.nix
blob4fa05ada850413e8f29b73a21343a4b16b27d3b1
1 { buildPythonPackage
2 , lib
3 , python
4 , fetchPypi
5 , six
6 , requests
7 }:
9 buildPythonPackage rec {
10   version = "3.1.2";
11   pname = "azure-cosmos";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "7f8ac99e4e40c398089fc383bfadcdc83376f72b88532b0cac0b420357cd08c7";
16   };
18   propagatedBuildInputs = [ six requests ];
20   pythonNamespaces = [ "azure" ];
22   # requires an active Azure Cosmos service
23   doCheck = false;
25   meta = with lib; {
26     description = "Azure Cosmos DB API";
27     homepage = "https://github.com/Azure/azure-sdk-for-python";
28     license = licenses.mit;
29     maintainers = with maintainers; [ jonringer ];
30   };