pythonPackages.azure-core: 1.2.2 -> 1.3.0

This commit is contained in:
Jonathan Ringer 2020-03-24 16:08:43 -07:00 committed by Jon
parent 7558e910bb
commit 6dedf6b230

View File

@ -1,6 +1,7 @@
{ lib, buildPythonPackage, fetchPypi, isPy27 { lib, buildPythonPackage, fetchPypi, isPy27
, aiodns , aiodns
, aiohttp , aiohttp
, mock
, msrest , msrest
, pytest , pytest
, pytestCheckHook , pytestCheckHook
@ -11,14 +12,14 @@
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "1.2.2"; version = "1.3.0";
pname = "azure-core"; pname = "azure-core";
disabled = isPy27; disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; extension = "zip";
sha256 = "0bz4m6kmqymxlxf9qk6jw8v895d13rsggbgsjpsbvi9px6w15nwb"; sha256 = "98d03a35845fe5b6abaa32f5961214da3e16c4c82b8c601926fc5e7f3a39549e";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -29,6 +30,7 @@ buildPythonPackage rec {
checkInputs = [ checkInputs = [
aiodns aiodns
aiohttp aiohttp
mock
msrest msrest
pytest pytest
pytestCheckHook pytestCheckHook