Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-storage / default.nix
blob6f14ce174cd274fb4bdb46ceed6b808691e48834
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , python
5 , azure-mgmt-common
6 , azure-mgmt-core
7 , isPy3k
8 }:
10 buildPythonPackage rec {
11   version = "17.0.0";
12   pname = "azure-mgmt-storage";
13   disabled = !isPy3k;
15   src = fetchPypi {
16     inherit pname version;
17     extension = "zip";
18     sha256 = "c0e3fd99028d98c80dddabe1c22dfeb3d694e5c1393c6de80766eb240739e4bc";
19   };
21   propagatedBuildInputs = [
22     azure-mgmt-common
23     azure-mgmt-core
24   ];
26   pythonNamespaces = [ "azure.mgmt" ];
28   pythonImportsCheck = [ "azure.mgmt.storage" ];
30   # has no tests
31   doCheck = false;
33   meta = with lib; {
34     description = "This is the Microsoft Azure Storage Management Client Library";
35     homepage = "https://github.com/Azure/azure-sdk-for-python";
36     license = licenses.mit;
37     maintainers = with maintainers; [ jonringer olcai maxwilson ];
38   };