nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #234735 from r-ryantm/auto-update/python310Packages.azure-containerregistry

python310Packages.azure-containerregistry: 1.0.0 -> 1.1.0

authored by

Weijia Wang and committed by
GitHub
d370d87d 8564ec81

+20 -6
+20 -6
pkgs/development/python-modules/azure-containerregistry/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pythonOlder 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pythonOlder 2 5 , azure-core 3 6 , msrest 4 7 , msrestazure 8 + , isodate 5 9 }: 6 10 7 11 buildPythonPackage rec { 8 12 pname = "azure-containerregistry"; 9 - version = "1.0.0"; 10 - disabled = pythonOlder "3.6"; 13 + version = "1.1.0"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.7"; 11 17 12 18 src = fetchPypi { 13 19 inherit pname version; 14 - hash = "sha256-DIZCHZM5aeKtmJrgwAk5J26ltaxNxKUn3rR+FbmuyZc="; 20 + hash = "sha256-6IU+fzMIL8HJv4rCrWlcJSuYre6cdBa7BjS9KrIbIRU="; 15 21 extension = "zip"; 16 22 }; 17 23 18 - propagatedBuildInputs = [ azure-core msrest msrestazure ]; 24 + propagatedBuildInputs = [ 25 + azure-core 26 + msrest 27 + msrestazure 28 + isodate 29 + ]; 19 30 20 31 # tests require azure-devtools which are not published (since 2020) 21 32 # https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/containerregistry/azure-containerregistry/dev_requirements.txt 22 33 doCheck = false; 23 34 24 - pythonImportsCheck = [ "azure.core" "azure.containerregistry" ]; 35 + pythonImportsCheck = [ 36 + "azure.core" 37 + "azure.containerregistry" 38 + ]; 25 39 26 40 meta = with lib; { 27 41 description = "Microsoft Azure Container Registry client library for Python";