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 ] ++ lib.optional (!isPy3k) futures;
25
26 # has no tests
27 doCheck = false;
28
29 meta = with lib; {
30 description = "Client library for Microsoft Azure Storage services containing the file service APIs";
31 homepage = "https://github.com/Azure/azure-sdk-for-python";
32 license = licenses.mit;
33 maintainers = with maintainers; [ cmcdragonkai ];
34 };
35}