lol

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

python310Packages.requests-futures: 1.0.0 -> 1.0.1

authored by

Weijia Wang and committed by
GitHub
09b33375 6b08e553

+19 -6
+19 -6
pkgs/development/python-modules/requests-futures/default.nix
··· 1 - { buildPythonPackage, fetchPypi, requests, lib }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pythonOlder 5 + , requests 6 + }: 2 7 3 8 buildPythonPackage rec { 4 9 pname = "requests-futures"; 5 - version = "1.0.0"; 10 + version = "1.0.1"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 6 14 7 15 src = fetchPypi { 8 16 inherit pname version; 9 - sha256 = "35547502bf1958044716a03a2f47092a89efe8f9789ab0c4c528d9c9c30bc148"; 17 + sha256 = "sha256-9VpO+ABw4oWOfR5zEj0r+uryW5P9NDhNjd8UjitnY3M="; 10 18 }; 11 19 12 - propagatedBuildInputs = [ requests ]; 20 + propagatedBuildInputs = [ 21 + requests 22 + ]; 13 23 14 - # tests are disabled because they require being online 24 + # Tests are disabled because they require being online 15 25 doCheck = false; 16 26 17 - pythonImportsCheck = [ "requests_futures" ]; 27 + pythonImportsCheck = [ 28 + "requests_futures" 29 + ]; 18 30 19 31 meta = with lib; { 20 32 description = "Asynchronous Python HTTP Requests for Humans using Futures"; 21 33 homepage = "https://github.com/ross/requests-futures"; 34 + changelog = "https://github.com/ross/requests-futures/blob/v${version}/CHANGELOG.md"; 22 35 license = with licenses; [ asl20 ]; 23 36 maintainers = with maintainers; [ applePrincess ]; 24 37 };