python3Packages.azure-data-tables: init at 12.4.0

main
Jonathan Ringer 2 years ago
parent 8b04068283
commit c9b86a269b
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0
  1. 32
      pkgs/development/python-modules/azure-data-tables/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -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 { };

Loading…
Cancel
Save