linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / azure-storage-file / default.nix
blob088b5260e65b59d64057c0ffcc0a7474ec8ce80d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , azure-common
5 , azure-storage-common
6 , isPy3k
7 , futures
8 }:
10 buildPythonPackage rec {
11   pname = "azure-storage-file";
12   version = "2.1.0";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "3559b9c7ab13450c66ea833eb82c28233bee24f1bd8ca19aa7d27f8c23d5bc53";
17   };
19   propagatedBuildInputs = [
20     azure-common
21     azure-storage-common
22   ] ++ lib.optional (!isPy3k) futures;
24   # has no tests
25   doCheck = false;
27   meta = with lib; {
28     description = "Client library for Microsoft Azure Storage services containing the file service APIs";
29     homepage = "https://github.com/Azure/azure-sdk-for-python";
30     license = licenses.mit;
31     maintainers = with maintainers; [ cmcdragonkai ];
32   };