1{ lib
2, buildPythonPackage
3, fetchPypi
4, azure-common
5, azure-storage-common
6}:
7
8buildPythonPackage rec {
9 pname = "azure-storage-queue";
10 version = "2.1.0";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "14e82d3691f1bbd23f2aff143a6c17af3c297164f6e597d223b65a67051ba278";
15 };
16
17 propagatedBuildInputs = [
18 azure-common
19 azure-storage-common
20 ];
21
22 # has no tests
23 doCheck = false;
24
25 meta = with lib; {
26 description = "Client library for Microsoft Azure Storage services containing the queue service APIs";
27 homepage = "https://github.com/Azure/azure-sdk-for-python";
28 license = licenses.mit;
29 maintainers = with maintainers; [ cmcdragonkai ];
30 };
31}