python3Packages.azure-data-tables: init at 12.4.0
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user