mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
python.pkgs.msrest: fix build on python2
This commit is contained in:
parent
9dd9769e46
commit
d338fc1583
1 changed files with 9 additions and 5 deletions
|
@ -1,15 +1,19 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonAtLeast
|
||||
, isPy3k
|
||||
, requests
|
||||
, requests_oauthlib
|
||||
, isodate
|
||||
, certifi
|
||||
, enum34
|
||||
, typing
|
||||
, aiohttp
|
||||
, aiodns
|
||||
, pytest
|
||||
, httpretty
|
||||
, mock
|
||||
, futures
|
||||
, trio
|
||||
}:
|
||||
|
||||
|
@ -28,12 +32,12 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [
|
||||
requests requests_oauthlib isodate certifi
|
||||
# optional
|
||||
aiohttp aiodns
|
||||
];
|
||||
] ++ lib.optionals (!isPy3k) [ enum34 typing ]
|
||||
++ lib.optionals isPy3k [ aiohttp aiodns ];
|
||||
|
||||
checkInputs = [ pytest httpretty ]
|
||||
++ lib.optional (pythonAtLeast "3.5") trio;
|
||||
++ lib.optionals (!isPy3k) [ mock futures ]
|
||||
++ lib.optional isPy3k trio;
|
||||
|
||||
# Deselected tests require network access
|
||||
checkPhase = ''
|
||||
|
|
Loading…
Reference in a new issue