1 { buildPythonPackage, fetchPypi, requests, lib }:
3 buildPythonPackage rec {
4 pname = "requests-futures";
9 sha256 = "35547502bf1958044716a03a2f47092a89efe8f9789ab0c4c528d9c9c30bc148";
12 propagatedBuildInputs = [ requests ];
14 # tests are disabled because they require being online
17 pythonImportsCheck = [ "requests_futures" ];
20 description = "Asynchronous Python HTTP Requests for Humans using Futures";
21 homepage = "https://github.com/ross/requests-futures";
22 license = with licenses; [ asl20 ];
23 maintainers = with maintainers; [ applePrincess ];