about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-appcontainers
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-08-24 23:09:17 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2023-08-24 23:09:17 +0200
commit95986a1e609f6aefd71424b87f8c1a18e3e10a65 (patch)
tree44fd35acb23f769d11209dbc16710409b5cc0896 /pkgs/development/python-modules/azure-mgmt-appcontainers
parent6a74322a40a083a177ed5adfe4940ad33dcfe134 (diff)
python311Packages.azure-mgmt-appcontainers: 2.0.0 -> 3.0.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-appcontainers')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix20
1 files changed, 12 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix b/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix
index b9e3a2e4a0531..624c9735b6ac7 100644
--- a/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix
+++ b/pkgs/development/python-modules/azure-mgmt-appcontainers/default.nix
@@ -4,32 +4,36 @@
 , pythonOlder
 , azure-common
 , azure-mgmt-core
-, msrest
-, msrestazure
+, isodate
+, typing-extensions
 }:
 
 buildPythonPackage rec {
-  version = "2.0.0";
   pname = "azure-mgmt-appcontainers";
+  version = "3.0.0";
+  format = "setuptools";
+
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-ccdIdvdgTYPWEZCWqkLc8lEuMuAEERvl5B1huJyBkvU=";
-    extension = "zip";
+    hash = "sha256-oqKPEOnZaIU7IMzDqT552IBJr9RtWt3vFO3SlG8igs0=";
   };
 
   propagatedBuildInputs = [
     azure-common
     azure-mgmt-core
-    msrest
-    msrestazure
+    isodate
+  ]  ++ lib.optionals (pythonOlder "3.8") [
+    typing-extensions
   ];
 
   # no tests included
   doCheck = false;
 
-  pythonImportsCheck = [ "azure.mgmt.appcontainers" ];
+  pythonImportsCheck = [
+    "azure.mgmt.appcontainers"
+  ];
 
   meta = with lib; {
     description = "Microsoft Azure Appcontainers Management Client Library for Python";