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

gstqt5
Jonathan Ringer 2020-09-28 10:14:39 -07:00 committed by Jon
parent 96384218a4
commit 680991d8fb
1 changed files with 10 additions and 3 deletions

View File

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