Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-marketplaceordering / default.nix
blobd07dd7a1cfe7a37011c2b624497b4cc978d1e047
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , msrest
5 , msrestazure
6 , azure-common
7 , azure-mgmt-nspkg
8 , isPy3k
9 , azure-mgmt-core
12 buildPythonPackage rec {
13   pname = "azure-mgmt-marketplaceordering";
14   version = "1.1.0";
15   format = "setuptools";
17   src = fetchPypi {
18     inherit pname version;
19     extension = "zip";
20     sha256 = "68b381f52a4df4435dacad5a97e1c59ac4c981f667dcca8f9d04453417d60ad8";
21   };
23   propagatedBuildInputs = [
24     msrest
25     msrestazure
26     azure-common
27     azure-mgmt-core
28   ] ++ lib.optionals (!isPy3k) [
29     azure-mgmt-nspkg
30   ];
32   # has no tests
33   doCheck = false;
35   meta = with lib; {
36     description = "This is the Microsoft Azure Market Place Ordering Client Library";
37     homepage = "https://github.com/Azure/azure-sdk-for-python";
38     license = licenses.mit;
39     maintainers = with maintainers; [ maxwilson ];
40   };