ttaenc: init at 3.4.1 (#238757)
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-managementpartner / default.nix
blobff45777f89704fd7aaf6cc0b6cc12d6989bc99f7
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   msrestazure,
6   azure-common,
7   azure-mgmt-core,
8   azure-mgmt-nspkg,
9 }:
11 buildPythonPackage rec {
12   pname = "azure-mgmt-managementpartner";
13   version = "1.0.0";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     extension = "zip";
19     sha256 = "1cd591848454a115c216d216a3fb7802c1b5de04b105e2696e4237b0f8768f2f";
20   };
22   propagatedBuildInputs = [
23     msrestazure
24     azure-common
25     azure-mgmt-core
26     azure-mgmt-nspkg
27   ];
29   # has no tests
30   doCheck = false;
32   meta = with lib; {
33     description = "This is the Microsoft Azure ManagementPartner Management Client Library";
34     homepage = "https://github.com/Azure/azure-sdk-for-python";
35     license = licenses.mit;
36     maintainers = with maintainers; [ maxwilson ];
37   };