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