biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-iothubprovisioningservices / default.nix
blob43f1de3c11bc84316593343611ee659de2ec1193
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   msrest,
6   msrestazure,
7   azure-common,
8   azure-mgmt-core,
9   azure-mgmt-nspkg,
12 buildPythonPackage rec {
13   pname = "azure-mgmt-iothubprovisioningservices";
14   version = "1.1.0";
15   format = "setuptools";
17   src = fetchPypi {
18     inherit pname version;
19     extension = "zip";
20     hash = "sha256-04OoJuff93L62G6IozpmHpEaUbHHHD6nKlkMHVoJvJ4=";
21   };
23   propagatedBuildInputs = [
24     msrest
25     msrestazure
26     azure-common
27     azure-mgmt-core
28     azure-mgmt-nspkg
29   ];
31   pythonNamespaces = [ "azure.mgmt" ];
33   # has no tests
34   doCheck = false;
36   meta = with lib; {
37     description = "This is the Microsoft Azure IoTHub Provisioning Services Client Library";
38     homepage = "https://github.com/Azure/azure-sdk-for-python";
39     license = licenses.mit;
40     maintainers = with maintainers; [
41       maxwilson
42     ];
43   };