1{ lib
2, buildPythonPackage
3, fetchPypi
4, azure-common
5, azure-storage-common
6}:
7
8buildPythonPackage rec {
9 pname = "azure-storage-queue";
10 version = "1.4.0";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "0bafe9e61c0ce7b3f3ecadea21e931dab3248bd4989dc327a8666c5deae7f7ed";
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-storage-python/tree/master/azure-storage-queue;
28 license = licenses.mit;
29 maintainers = with maintainers; [ cmcdragonkai ];
30 };
31}