Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-storage / default.nix
blob5643ab8ce545f29530f1d34d4414ea15da587654
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 = "21.1.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-1tPA6RfJiLye0Eckd9PvP5CIYAnrHZenEZRPg3VjAWI=";
19   };
21   propagatedBuildInputs = [
22     azure-mgmt-common
23     azure-mgmt-core
24   ];
26   pythonNamespaces = [
27     "azure.mgmt"
28   ];
30   pythonImportsCheck = [
31     "azure.mgmt.storage"
32   ];
34   # Module has no tests
35   doCheck = false;
37   meta = with lib; {
38     description = "This is the Microsoft Azure Storage Management Client Library";
39     homepage = "https://github.com/Azure/azure-sdk-for-python";
40     license = licenses.mit;
41     maintainers = with maintainers; [ jonringer olcai maxwilson ];
42   };