Merge pull request #194731 from r-ryantm/auto-update/python310Packages.youtube-search
python310Packages.youtube-search: 2.1.1 -> 2.1.2
This commit is contained in:
@@ -1,20 +1,32 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, requests }:
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "youtube-search";
|
||||
version = "2.1.1";
|
||||
version = "2.1.2";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-veu7PUPAbTz3B7tRYMGptIMbmmaGLCdL6azv0kCEd08=";
|
||||
hash = "sha256-V0mm2Adv2mVVfJE2fw+rCTYpDs3qRXyDHJ8/BZGKOqI=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ requests ];
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
];
|
||||
|
||||
# tests require network connection
|
||||
# Tests require network connection
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "youtube_search" ];
|
||||
pythonImportsCheck = [
|
||||
"youtube_search"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tool for searching for youtube videos to avoid using their heavily rate-limited API";
|
||||
|
||||
Reference in New Issue
Block a user