aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/pydocumentdb/default.nix
blob: c8a260a9e9b61aa72cae148f4719c2b4a631cdf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, buildPythonPackage, fetchPypi, six, requests }:

buildPythonPackage rec {
  pname = "pydocumentdb";
  version = "2.3.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1vly2f3qj4haxnqvvypjmi1slllrdn9d2dknval5z6xngrmy2137";
  };

  propagatedBuildInputs = [ six requests ];

  doCheck = false;

  meta = with stdenv.lib; {
    description = "Azure DocumentDB Python SDK";
    homepage = https://github.com/Azure/azure-documentdb-python;
    license = licenses.mit;
    maintainers = with maintainers; [ stesie ];
  };
}