ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-storage / default.nix
blob417264a70ffa0c90a531ac7d98738b5b82d846a2
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , azure-mgmt-common
5 , azure-mgmt-core
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "azure-mgmt-storage";
11   version = "20.1.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     extension = "zip";
19     hash = "sha256-IU8/3oyR4n1T8uZUoo0VADrT9vFchDioIF8MiKSNlFE=";
20   };
22   propagatedBuildInputs = [
23     azure-mgmt-common
24     azure-mgmt-core
25   ];
27   pythonNamespaces = [
28     "azure.mgmt"
29   ];
31   pythonImportsCheck = [
32     "azure.mgmt.storage"
33   ];
35   # has no tests
36   doCheck = false;
38   meta = with lib; {
39     description = "This is the Microsoft Azure Storage Management Client Library";
40     homepage = "https://github.com/Azure/azure-sdk-for-python";
41     license = licenses.mit;
42     maintainers = with maintainers; [ jonringer olcai maxwilson ];
43   };