ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-iothubprovisioningservices / default.nix
blobdfd8581af1aa638cebe59c1328b51178ec6be40c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , msrest
5 , msrestazure
6 , azure-common
7 , azure-mgmt-core
8 , azure-mgmt-nspkg
9 }:
11 buildPythonPackage rec {
12   pname = "azure-mgmt-iothubprovisioningservices";
13   version = "1.1.0";
15   src = fetchPypi {
16     inherit pname version;
17     extension = "zip";
18     sha256 = "sha256-04OoJuff93L62G6IozpmHpEaUbHHHD6nKlkMHVoJvJ4=";
19   };
21   propagatedBuildInputs = [
22     msrest
23     msrestazure
24     azure-common
25     azure-mgmt-core
26     azure-mgmt-nspkg
27   ];
29   pythonNamespaces = [ "azure.mgmt" ];
31   # has no tests
32   doCheck = false;
34   meta = with lib; {
35     description = "This is the Microsoft Azure IoTHub Provisioning Services Client Library";
36     homepage = "https://github.com/Azure/azure-sdk-for-python";
37     license = licenses.mit;
38     maintainers = with maintainers; [ jonringer maxwilson ];
39   };