linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / azure-storage-blob / default.nix
blob7367e9604b9a3ab7359640981d2c8638207f8c19
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , azure-common
5 , azure-core
6 , azure-storage-common
7 , msrest
8 , isPy3k
9 , futures
12 buildPythonPackage rec {
13   pname = "azure-storage-blob";
14   version = "12.8.0";
16   src = fetchPypi {
17     inherit pname version;
18     extension = "zip";
19     sha256 = "36b85a3423379d4a93f663022487cf53aa3043a355f8414321dde878c00cb577";
20   };
22   propagatedBuildInputs = [
23     azure-common
24     azure-core
25     azure-storage-common
26     msrest
27   ] ++ lib.optional (!isPy3k) futures;
29   # has no tests
30   doCheck = false;
32   meta = with lib; {
33     description = "Client library for Microsoft Azure Storage services containing the blob service APIs";
34     homepage = "https://github.com/Azure/azure-sdk-for-python";
35     license = licenses.mit;
36     maintainers = with maintainers; [ cmcdragonkai maxwilson ];
37   };