From ec5d7e687a46f74493d752888c59f0baca3df289 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 19 Oct 2022 18:56:56 +0200 Subject: [PATCH] python310Packages.azure-storage-file-share: adjust input - update disabled --- .../python-modules/azure-storage-file-share/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/azure-storage-file-share/default.nix b/pkgs/development/python-modules/azure-storage-file-share/default.nix index 71420eb264e..9957f87f765 100644 --- a/pkgs/development/python-modules/azure-storage-file-share/default.nix +++ b/pkgs/development/python-modules/azure-storage-file-share/default.nix @@ -2,11 +2,11 @@ , buildPythonPackage , fetchPypi , pythonOlder - -# pythonPackages , azure-core , cryptography +, isodate , msrest +, typing-extensions }: buildPythonPackage rec { @@ -14,7 +14,7 @@ buildPythonPackage rec { version = "12.10.1"; format = "setuptools"; - disabled = pythonOlder "3.6"; + disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; @@ -25,7 +25,9 @@ buildPythonPackage rec { propagatedBuildInputs = [ azure-core cryptography + isodate msrest + typing-extensions ]; # requires checkout from monorepo