python313Packages.publicsuffixlist: 1.0.2.20250122 -> 1.0.2.20250124 (#376319)
[NixPkgs.git] / pkgs / development / python-modules / azure-storage-file / default.nix
blob97ad54fda7041464678c4c9f5ce623bf58f687bb
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   azure-common,
6   azure-storage-common,
7   isPy3k,
8   futures ? null,
9 }:
11 buildPythonPackage rec {
12   pname = "azure-storage-file";
13   version = "2.1.0";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "3559b9c7ab13450c66ea833eb82c28233bee24f1bd8ca19aa7d27f8c23d5bc53";
19   };
21   propagatedBuildInputs = [
22     azure-common
23     azure-storage-common
24   ] ++ lib.optional (!isPy3k) futures;
26   # has no tests
27   doCheck = false;
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   };