about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-storage-queue/default.nix
blob: aa69731809ba39461208b439f658c1b7f0982671 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib
, buildPythonPackage
, fetchPypi
, azure-common
, azure-storage-common
, msrest
}:

buildPythonPackage rec {
  pname = "azure-storage-queue";
  version = "12.5.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-OzdEJK9y0y2v+Lr5tkYwB0w6iz/VMypFIWs7yWvHsXI=";
    extension = "zip";
  };

  propagatedBuildInputs = [
    azure-common
    azure-storage-common
    msrest
  ];

  # has no tests
  doCheck = false;

  meta = with lib; {
    description = "Client library for Microsoft Azure Storage services containing the queue service APIs";
    homepage = "https://github.com/Azure/azure-sdk-for-python";
    license = licenses.mit;
    maintainers = with maintainers; [ cmcdragonkai ];
  };
}