Merge pull request #167649 from r-ryantm/auto-update/python310Packages.azure-mgmt-storage

python310Packages.azure-mgmt-storage: 19.1.0 -> 20.0.0
This commit is contained in:
Fabian Affolter 2022-04-07 14:39:22 +02:00 committed by GitHub
commit f1ddfa01f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,18 +3,20 @@
, fetchPypi
, azure-mgmt-common
, azure-mgmt-core
, isPy3k
, pythonOlder
}:
buildPythonPackage rec {
version = "19.1.0";
version = "20.0.0";
pname = "azure-mgmt-storage";
disabled = !isPy3k;
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "sha256-Seoi8A4JZaNVCvNKQcGh06SBaQ9lAMeOhUCIAvVtdBY=";
hash = "sha256-buR2tWIv9vWVTt7m6w2N1CezIXAihVrfHshjPKBM3uI=";
};
propagatedBuildInputs = [
@ -22,9 +24,13 @@ buildPythonPackage rec {
azure-mgmt-core
];
pythonNamespaces = [ "azure.mgmt" ];
pythonNamespaces = [
"azure.mgmt"
];
pythonImportsCheck = [ "azure.mgmt.storage" ];
pythonImportsCheck = [
"azure.mgmt.storage"
];
# has no tests
doCheck = false;