forked from mirrors/nixpkgs
Merge pull request #7231 from olcai/update-python-azure
python-packages: azure 0.9.0 -> 0.10.0
This commit is contained in:
commit
13b68e727f
|
@ -659,20 +659,21 @@ let
|
|||
}));
|
||||
|
||||
azure = buildPythonPackage rec {
|
||||
version = "0.9.0";
|
||||
version = "0.10.0";
|
||||
name = "azure-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/a/azure/${name}.zip";
|
||||
md5 = "9616767cf45c1c00794624e2a0889f23";
|
||||
md5 = "305b0036df5696d68369807835f554ae";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ dateutil ];
|
||||
propagatedBuildInputs = with self; [ dateutil futures pyopenssl requests ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Microsoft Azure SDK for Python";
|
||||
homepage = "http://azure.microsoft.com/en-us/develop/python/";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.olcai ];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue