python3Packages.azure-data-tables: init at 12.4.0

This commit is contained in:
Jonathan Ringer
2022-06-06 16:13:23 -07:00
parent 8b04068283
commit c9b86a269b
2 changed files with 34 additions and 0 deletions
@@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, azure-core
, msrest
}:
buildPythonPackage rec {
pname = "azure-data-tables";
version = "12.4.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "sha256-3V/I3pHi+JCO+kxkyn9jz4OzBoqbpCYpjeO1QTnpZlw=";
};
propagatedBuildInputs = [
azure-core
msrest
];
# has no tests
doCheck = false;
meta = with lib; {
description = "NoSQL data storage service that can be accessed from anywhere";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}
+2
View File
@@ -883,6 +883,8 @@ in {
azure-cosmosdb-table = callPackage ../development/python-modules/azure-cosmosdb-table { };
azure-data-tables = callPackage ../development/python-modules/azure-data-tables { };
azure-datalake-store = callPackage ../development/python-modules/azure-datalake-store { };
azure-eventgrid = callPackage ../development/python-modules/azure-eventgrid { };