Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib
2, buildPythonPackage
3, fetchPypi
4, azure-common
5, azure-storage-common
6, msrest
7}:
8
9buildPythonPackage rec {
10 pname = "azure-storage-queue";
11 version = "12.5.0";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "sha256-OzdEJK9y0y2v+Lr5tkYwB0w6iz/VMypFIWs7yWvHsXI=";
16 extension = "zip";
17 };
18
19 propagatedBuildInputs = [
20 azure-common
21 azure-storage-common
22 msrest
23 ];
24
25 # has no tests
26 doCheck = false;
27
28 meta = with lib; {
29 description = "Client library for Microsoft Azure Storage services containing the queue service APIs";
30 homepage = "https://github.com/Azure/azure-sdk-for-python";
31 license = licenses.mit;
32 maintainers = with maintainers; [ cmcdragonkai ];
33 };
34}