Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-containerregistry / default.nix
blob821c7db0d324d1aeec2e74720035856a04447e91
1 { lib, buildPythonPackage, fetchPypi, isPy27
2 , azure-common
3 , msrest
4 , msrestazure
5 }:
7 buildPythonPackage rec {
8   version = "2.8.0";
9   pname = "azure-mgmt-containerregistry";
10   disabled = isPy27;
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "193k07a77z7bj61zn2gxvvfqi20cgxksvxp7if71bwsl1l2y2jxj";
15     extension = "zip";
16   };
18   propagatedBuildInputs = [ azure-common msrest msrestazure ];
20   # no tests included
21   doCheck = false;
23   pythonImportsCheck = [ "azure.common" "azure.mgmt.containerregistry" ];
25   meta = with lib; {
26     description = "Microsoft Azure Container Registry Client Library for Python";
27     homepage = "https://github.com/Azure/azure-sdk-for-python";
28     license = licenses.mit;
29     maintainers = with maintainers; [ jonringer ];
30   };