depot/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-managementpartner/default.nix

39 lines
798 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchPypi,
msrestazure,
azure-common,
azure-mgmt-core,
azure-mgmt-nspkg,
}:
buildPythonPackage rec {
pname = "azure-mgmt-managementpartner";
version = "1.0.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "1cd591848454a115c216d216a3fb7802c1b5de04b105e2696e4237b0f8768f2f";
};
propagatedBuildInputs = [
msrestazure
azure-common
azure-mgmt-core
azure-mgmt-nspkg
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure ManagementPartner Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [ maxwilson ];
};
}