9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
34 lines
686 B
Nix
34 lines
686 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, azure-core
|
|
, msrest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "azure-data-tables";
|
|
version = "12.4.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
extension = "zip";
|
|
hash = "sha256-qLA0vNRyIu36xKwB55BD/TCTOv+nmyOtk3+Y4P+SalI=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|