evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-marketplaceordering / default.nix
blob4f2dd1ff04a1e6f2258fc761e6fcd8387d9c2b06
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   msrest,
6   msrestazure,
7   azure-common,
8   azure-mgmt-nspkg,
9   isPy3k,
10   azure-mgmt-core,
13 buildPythonPackage rec {
14   pname = "azure-mgmt-marketplaceordering";
15   version = "1.1.0";
16   format = "setuptools";
18   src = fetchPypi {
19     inherit pname version;
20     extension = "zip";
21     sha256 = "68b381f52a4df4435dacad5a97e1c59ac4c981f667dcca8f9d04453417d60ad8";
22   };
24   propagatedBuildInputs = [
25     msrest
26     msrestazure
27     azure-common
28     azure-mgmt-core
29   ] ++ lib.optionals (!isPy3k) [ azure-mgmt-nspkg ];
31   # has no tests
32   doCheck = false;
34   meta = with lib; {
35     description = "This is the Microsoft Azure Market Place Ordering Client Library";
36     homepage = "https://github.com/Azure/azure-sdk-for-python";
37     license = licenses.mit;
38     maintainers = with maintainers; [ maxwilson ];
39   };