python310Packages.youtube-search: disable on older Python releases

This commit is contained in:
Fabian Affolter 2022-10-06 15:40:11 +02:00 committed by GitHub
parent cb7c49099f
commit 4231236d04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,20 +1,32 @@
{ lib, buildPythonPackage, fetchPypi, requests }: { lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, requests
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "youtube-search"; pname = "youtube-search";
version = "2.1.2"; version = "2.1.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-V0mm2Adv2mVVfJE2fw+rCTYpDs3qRXyDHJ8/BZGKOqI="; hash = "sha256-V0mm2Adv2mVVfJE2fw+rCTYpDs3qRXyDHJ8/BZGKOqI=";
}; };
propagatedBuildInputs = [ requests ]; propagatedBuildInputs = [
requests
];
# tests require network connection # Tests require network connection
doCheck = false; doCheck = false;
pythonImportsCheck = [ "youtube_search" ]; pythonImportsCheck = [
"youtube_search"
];
meta = with lib; { meta = with lib; {
description = "Tool for searching for youtube videos to avoid using their heavily rate-limited API"; description = "Tool for searching for youtube videos to avoid using their heavily rate-limited API";