about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-05-15 10:00:26 +0200
committerGitHub <noreply@github.com>2023-05-15 10:00:26 +0200
commitfbe2adffdb2e5b7ba376b023d6f5b5c53f8b97ac (patch)
tree141f49e1eda0fc93396de634a8731721473d0e23
parentc6ef6dbc89f414e7e5e34320b27472b31a04bb8f (diff)
parentcedcd620c50b0cca699373cb4d9186670e8b4455 (diff)
downloadnixlib-fbe2adffdb2e5b7ba376b023d6f5b5c53f8b97ac.tar
nixlib-fbe2adffdb2e5b7ba376b023d6f5b5c53f8b97ac.tar.gz
nixlib-fbe2adffdb2e5b7ba376b023d6f5b5c53f8b97ac.tar.bz2
nixlib-fbe2adffdb2e5b7ba376b023d6f5b5c53f8b97ac.tar.lz
nixlib-fbe2adffdb2e5b7ba376b023d6f5b5c53f8b97ac.tar.xz
nixlib-fbe2adffdb2e5b7ba376b023d6f5b5c53f8b97ac.tar.zst
nixlib-fbe2adffdb2e5b7ba376b023d6f5b5c53f8b97ac.zip
Merge pull request #231981 from r-ryantm/auto-update/python311Packages.azure-mgmt-iothub
python311Packages.azure-mgmt-iothub: 2.3.0 -> 2.4.0
-rw-r--r--pkgs/development/python-modules/azure-mgmt-iothub/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-iothub/default.nix b/pkgs/development/python-modules/azure-mgmt-iothub/default.nix
index 5539fe103673..e4e3ae6374c9 100644
--- a/pkgs/development/python-modules/azure-mgmt-iothub/default.nix
+++ b/pkgs/development/python-modules/azure-mgmt-iothub/default.nix
@@ -6,17 +6,20 @@
 , azure-common
 , azure-mgmt-core
 , azure-mgmt-nspkg
-, isPy3k
+, pythonOlder
 }:
 
 buildPythonPackage rec {
   pname = "azure-mgmt-iothub";
-  version = "2.3.0";
+  version = "2.4.0";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
     extension = "zip";
-    hash = "sha256-ml+koj52l5o0toAcnsGtsw0tGnO5F/LKq56ovzdmx/A=";
+    hash = "sha256-enpNE5kVyGK+ctrGt1gt6633rNvT9FM76kSQ7prb1Wo=";
   };
 
   propagatedBuildInputs = [
@@ -24,8 +27,6 @@ buildPythonPackage rec {
     azure-mgmt-core
     msrest
     msrestazure
-  ] ++ lib.optionals (!isPy3k) [
-    azure-mgmt-nspkg
   ];
 
   # has no tests