python3Packages.azure-mgmt-storage: 11.2.0 -> 16.0.0

This commit is contained in:
Jonathan Ringer 2020-09-28 10:14:39 -07:00 committed by Jon
parent 96384218a4
commit 680991d8fb

View File

@ -3,23 +3,30 @@
, fetchPypi , fetchPypi
, python , python
, azure-mgmt-common , azure-mgmt-common
, azure-mgmt-core
, isPy3k , isPy3k
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "11.2.0"; version = "16.0.0";
pname = "azure-mgmt-storage"; pname = "azure-mgmt-storage";
disabled = !isPy3k;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; extension = "zip";
sha256 = "fc8e3cbf3c58cab98d9b2218c774dae2cc90b693f5ab5a24a7a959febe6c0528"; sha256 = "2f9d714d9722b1ef4bac6563676612e6e795c4e90f6f3cd323616fdadb0a99e5";
}; };
propagatedBuildInputs = [ azure-mgmt-common ]; propagatedBuildInputs = [
azure-mgmt-common
azure-mgmt-core
];
pythonNamespaces = [ "azure.mgmt" ]; pythonNamespaces = [ "azure.mgmt" ];
pythonImportsCheck = [ "azure.mgmt.storage" ];
# has no tests # has no tests
doCheck = false; doCheck = false;