Commit d85eb004 authored by Fabian Affolter's avatar Fabian Affolter Committed by Weijia Wang
Browse files

python310Packages.requests-futures: add changelog to meta

parent 9a23a043
Loading
Loading
Loading
Loading
+13 −4
Original line number Diff line number Diff line
{ buildPythonPackage, fetchPypi, requests, lib }:
{ lib
, buildPythonPackage
, fetchPypi
, requests
}:

buildPythonPackage rec {
  pname = "requests-futures";
@@ -9,16 +13,21 @@ buildPythonPackage rec {
    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 ];
  };