linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-imagebuilder / default.nix
blob404caf4ebf5b7f851155cfb366183b8b5baba192
1 { lib, buildPythonPackage, fetchPypi, isPy27
2 , azure-common
3 , msrest
4 , msrestazure
5 }:
7 buildPythonPackage rec {
8   version = "0.4.0";
9   pname = "azure-mgmt-imagebuilder";
10   disabled = isPy27;
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "4c9291bf16b40b043637e5e4f15650f71418ac237393e62219cab478a7951733";
15     extension = "zip";
16   };
18   propagatedBuildInputs = [ azure-common msrest msrestazure ];
20   # no tests included
21   doCheck = false;
23   pythonImportsCheck = [ "azure.common" "azure.mgmt.imagebuilder" ];
25   meta = with lib; {
26     description = "Microsoft Azure Image Builder Client Library for Python";
27     homepage = "https://github.com/Azure/azure-sdk-for-python";
28     license = licenses.mit;
29     maintainers = with maintainers; [ jonringer ];
30   };