8 buildPythonPackage rec {
9 pname = "requests-futures";
11 format = "setuptools";
13 disabled = pythonOlder "3.7";
16 inherit pname version;
17 sha256 = "sha256-9VpO+ABw4oWOfR5zEj0r+uryW5P9NDhNjd8UjitnY3M=";
20 propagatedBuildInputs = [
24 # Tests are disabled because they require being online
27 pythonImportsCheck = [
32 description = "Asynchronous Python HTTP Requests for Humans using Futures";
33 homepage = "https://github.com/ross/requests-futures";
34 changelog = "https://github.com/ross/requests-futures/blob/v${version}/CHANGELOG.md";
35 license = with licenses; [ asl20 ];
36 maintainers = with maintainers; [ applePrincess ];