lol

Merge pull request #172440 from r-ryantm/auto-update/python3.10-azure-storage-file-share

python310Packages.azure-storage-file-share: 12.7.0 -> 12.8.0

authored by

Fabian Affolter and committed by
GitHub
ced66c7f bca4ad04

+10 -9
+10 -9
pkgs/development/python-modules/azure-storage-file-share/default.nix
··· 1 - { buildPythonPackage 1 + { lib 2 + , buildPythonPackage 2 3 , fetchPypi 3 - , isPy3k 4 - , lib 4 + , pythonOlder 5 5 6 6 # pythonPackages 7 7 , azure-core ··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "azure-storage-file-share"; 14 - version = "12.7.0"; 15 - disabled = !isPy3k; 14 + version = "12.8.0"; 15 + format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.6"; 16 18 17 19 src = fetchPypi { 18 20 inherit pname version; 19 21 extension = "zip"; 20 - sha256 = "sha256-kYNugiWNlXEgryKLwrzytca/W+2481RqqUCbdJWrqDI="; 22 + hash = "sha256-46OEVjMYFUa8A6Qh+yicrqUuXmUaSzsWT4maBFG6Yqg="; 21 23 }; 22 24 23 25 propagatedBuildInputs = [ ··· 28 30 29 31 # requires checkout from monorepo 30 32 doCheck = false; 33 + 31 34 pythonImportsCheck = [ 32 35 "azure.core" 33 36 "azure.storage" ··· 37 40 description = "Microsoft Azure File Share Storage Client Library for Python"; 38 41 homepage = "https://github.com/Azure/azure-sdk-for-python"; 39 42 license = licenses.mit; 40 - maintainers = with maintainers; [ 41 - kamadorueda 42 - ]; 43 + maintainers = with maintainers; [ kamadorueda ]; 43 44 }; 44 45 }