depot/third_party/nixpkgs/pkgs/development/python-modules/azure-mgmt-extendedlocation/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

31 lines
716 B
Nix

{ lib, buildPythonPackage, fetchPypi
, azure-common
, azure-mgmt-core
, msrest
}:
buildPythonPackage rec {
pname = "azure-mgmt-extendedlocation";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
hash = "sha256-jRo6EFP8Dg3i9U8HLfjED9QFfWbdg+X3o9PSf4eus9o=";
};
propagatedBuildInputs = [
azure-common
azure-mgmt-core
msrest
];
pythonImportsCheck = [ "azure.mgmt.extendedlocation" ];
meta = with lib; {
description = "Microsoft Azure Extendedlocation Management Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}