56 lines
1.0 KiB
Nix
56 lines
1.0 KiB
Nix
{ lib, buildPythonPackage, fetchPypi, isPy27
|
|
, aiodns
|
|
, aiohttp
|
|
, mock
|
|
, msrest
|
|
, pytest
|
|
, pytest-asyncio
|
|
, pytest-trio
|
|
, pytestCheckHook
|
|
, requests
|
|
, six
|
|
, trio
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.8.0";
|
|
pname = "azure-core";
|
|
disabled = isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
extension = "zip";
|
|
sha256 = "c89bbdcdc13ad45fe57d775ed87b15baf6d0b039a1ecd0a1bc91d2f713cb1f08";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
six
|
|
];
|
|
|
|
checkInputs = [
|
|
aiodns
|
|
aiohttp
|
|
mock
|
|
msrest
|
|
pytest
|
|
pytest-trio
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
trio
|
|
typing-extensions
|
|
];
|
|
|
|
pytestFlagsArray = [ "tests/" ];
|
|
# disable tests which touch network
|
|
disabledTests = [ "aiohttp" "multipart_send" "response" "request" "timeout" ];
|
|
|
|
meta = with lib; {
|
|
description = "Microsoft Azure Core Library for Python";
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jonringer ];
|
|
};
|
|
}
|