biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / azure-multiapi-storage / default.nix
blob1a8a6b49031b0547818959b3b7b5aaa762f2f514
2   lib,
3   azure-common,
4   azure-core,
5   buildPythonPackage,
6   cryptography,
7   fetchPypi,
8   msrest,
9   msrestazure,
10   pythonOlder,
11   requests,
12   setuptools,
15 buildPythonPackage rec {
16   pname = "azure-multiapi-storage";
17   version = "1.3.0";
18   pyproject = true;
20   disabled = pythonOlder "3.9";
22   src = fetchPypi {
23     inherit pname version;
24     hash = "sha256-tlKogIs39tIoMVl3p/YConfPdPrpX9oc9WqQ+FuhgQk=";
25   };
27   build-system = [ setuptools ];
29   dependencies = [
30     azure-common
31     azure-core
32     cryptography
33     msrest
34     msrestazure
35     requests
36   ];
38   # fix namespace
39   pythonNamespaces = [ "azure.multiapi" ];
41   # no tests included
42   doCheck = false;
44   pythonImportsCheck = [
45     "azure.common"
46     "azure.multiapi.storage"
47   ];
49   meta = with lib; {
50     description = "Microsoft Azure Storage Client Library for Python with multi API version support";
51     homepage = "https://github.com/Azure/azure-sdk-for-python";
52     license = licenses.mit;
53     maintainers = [ ];
54   };