about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/azure-storage-file/default.nix
blob: ffdb2f656c1db0415b4eb98ca59c5e5680aa36ca (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
{ lib
, buildPythonPackage
, fetchPypi
, azure-common
, azure-storage-common
, isPy3k
, futures
}:

buildPythonPackage rec {
  pname = "azure-storage-file";
  version = "1.4.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "5217b0441b671246a8d5f506a459fa3af084eeb9297c5be3bbe95d75d23bac2f";
  };

  propagatedBuildInputs = [
    azure-common
    azure-storage-common
  ] ++ lib.optional (!isPy3k) futures;

  # has no tests
  doCheck = false;

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