mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, isPy3k
|
|
, requests
|
|
, requests_oauthlib
|
|
, isodate
|
|
, certifi
|
|
, enum34
|
|
, typing
|
|
, aiohttp
|
|
, aiodns
|
|
, pytest
|
|
, httpretty
|
|
, mock
|
|
, futures
|
|
, trio
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.6.18";
|
|
pname = "msrest";
|
|
|
|
# no tests in PyPI tarball
|
|
# see https://github.com/Azure/msrest-for-python/pull/152
|
|
src = fetchFromGitHub {
|
|
owner = "Azure";
|
|
repo = "msrest-for-python";
|
|
rev = "v${version}";
|
|
sha256 = "0j0dbca47qnxnhpfgj3v5bglg8dpx2cy1psix8kp3ldrkf6rjwdb";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
requests requests_oauthlib isodate certifi
|
|
] ++ lib.optionals (!isPy3k) [ enum34 typing ]
|
|
++ lib.optionals isPy3k [ aiohttp aiodns ];
|
|
|
|
checkInputs = [ pytest httpretty ]
|
|
++ lib.optionals (!isPy3k) [ mock futures ]
|
|
++ lib.optional isPy3k trio;
|
|
|
|
# Deselected tests require network access
|
|
checkPhase = ''
|
|
pytest tests/ -k "not test_conf_async_trio_requests"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "The runtime library 'msrest' for AutoRest generated Python clients.";
|
|
homepage = "https://github.com/Azure/msrest-for-python";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bendlas jonringer mwilsoninsight ];
|
|
};
|
|
}
|