depot/third_party/nixpkgs/pkgs/development/python-modules/azure-data-tables/default.nix
Default email 889482aab3 Project import generated by Copybara.
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
2022-06-26 12:26:21 +02:00

34 lines
688 B
Nix

{ 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;
pythonImportsCheck = [ "azure.data.tables" ];
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 ];
};
}