pythonPackages.pydocumentdb: init at 2.3.3

This commit is contained in:
Jonathan Ringer
2019-06-15 13:25:53 -07:00
parent 46ce40ba6a
commit d20e963e91
2 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{ buildPythonPackage
, lib
, fetchPypi
, six
, requests
}:
buildPythonPackage rec {
version = "2.3.3";
pname = "pydocumentdb";
src = fetchPypi {
inherit pname version;
sha256 = "1fcp3g62pc9hpa0r6vdjhaln4h0azywjqfzi8bd4414ja0mxmj3p";
};
propagatedBuildInputs = [ six requests ];
# requires an active Azure Cosmos service
doCheck = false;
meta = with lib; {
description = "Azure Cosmos DB API";
homepage = https://github.com/Azure/azure-cosmos-python;
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}