Unverified Commit 09b33375 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #238690 from r-ryantm/auto-update/python310Packages.requests-futures

python310Packages.requests-futures: 1.0.0 -> 1.0.1
parents 6b08e553 4b123e5b
Loading
Loading
Loading
Loading
+19 −6
Original line number Diff line number Diff line
{ buildPythonPackage, fetchPypi, requests, lib }:
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, requests
}:

buildPythonPackage rec {
  pname = "requests-futures";
  version = "1.0.0";
  version = "1.0.1";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "35547502bf1958044716a03a2f47092a89efe8f9789ab0c4c528d9c9c30bc148";
    sha256 = "sha256-9VpO+ABw4oWOfR5zEj0r+uryW5P9NDhNjd8UjitnY3M=";
  };

  propagatedBuildInputs = [ requests ];
  propagatedBuildInputs = [
    requests
  ];

  # tests are disabled because they require being online
  # Tests are disabled because they require being online
  doCheck = false;

  pythonImportsCheck = [ "requests_futures" ];
  pythonImportsCheck = [
    "requests_futures"
  ];

  meta = with lib; {
    description = "Asynchronous Python HTTP Requests for Humans using Futures";
    homepage = "https://github.com/ross/requests-futures";
    changelog = "https://github.com/ross/requests-futures/blob/v${version}/CHANGELOG.md";
    license = with licenses; [ asl20 ];
    maintainers = with maintainers; [ applePrincess ];
  };