ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / requests-futures / default.nix
blobcc6eb312431efd4c0f60bc0fd03081d9e883cc4c
1 { buildPythonPackage, fetchPypi, requests, lib }:
3 buildPythonPackage rec {
4   pname = "requests-futures";
5   version = "1.0.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "35547502bf1958044716a03a2f47092a89efe8f9789ab0c4c528d9c9c30bc148";
10   };
12   propagatedBuildInputs = [ requests ];
14   # tests are disabled because they require being online
15   doCheck = false;
17   pythonImportsCheck = [ "requests_futures" ];
19   meta = with lib; {
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 ];
24   };