pythonPackages.azure-cosmosdb-nspkg: init at 2.0.2

This commit is contained in:
Max Wilson 2019-04-29 17:47:23 -04:00 committed by Wael M. Nasreddine
parent 4bd2b34ba9
commit 44bbc6632a
No known key found for this signature in database
GPG Key ID: FD437548E0BF0F5F
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
, azure-nspkg
}:
buildPythonPackage rec {
pname = "azure-cosmosdb-nspkg";
version = "2.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "acf691e692818d9a65c653c7a3485eb8e35c0bdc496bba652e5ea3905ba09cd8";
};
propagatedBuildInputs = [
azure-nspkg
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure CosmosDB namespace package";
homepage = https://github.com/Azure/azure-cosmos-table-python/tree/master/azure-cosmosdb-nspkg;
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
};
}

View File

@ -246,6 +246,8 @@ in {
azure-batch = callPackage ../development/python-modules/azure-batch { };
azure-cosmosdb-nspkg = callPackage ../development/python-modules/azure-cosmosdb-nspkg { };
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };