depot/third_party/nixpkgs/pkgs/development/python-modules/azure-servicemanagement-legacy/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

39 lines
810 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
azure-common,
requests,
}:
buildPythonPackage rec {
version = "0.20.7";
format = "setuptools";
pname = "azure-servicemanagement-legacy";
src = fetchPypi {
inherit version pname;
extension = "zip";
sha256 = "1kcibw17qm8c02y28xabm3k1zrawi6g4q8kzc751l5l3vagqnf2x";
};
propagatedBuildInputs = [
azure-common
requests
];
pythonNamespaces = [ "azure" ];
# has no tests
doCheck = false;
pythonImportsCheck = [ "azure.servicemanagement" ];
meta = with lib; {
description = "This is the Microsoft Azure Service Management Legacy Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [
olcai
maxwilson
];
};
}