diff options
author | Fabian Affolter | 2022-03-21 09:13:44 +0100 |
---|---|---|
committer | GitHub | 2022-03-21 09:13:44 +0100 |
commit | 282f698055dcf7cc0b3e67791a2aa81bb3d80ffa (patch) | |
tree | 37adc088f3bacafedd1e30d87207ec8d62448941 /pkgs | |
parent | f01f99a0bed10f151b9b6fbcbb10dc3b5f7319ee (diff) | |
parent | a88c8d132a905393aefd344718fde02b5e4722c4 (diff) |
Merge pull request #165056 from r-ryantm/auto-update/python3.10-youtube-search-python
python310Packages.youtube-search-python: 1.6.2 -> 1.6.3
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/development/python-modules/youtube-search-python/default.nix | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/youtube-search-python/default.nix b/pkgs/development/python-modules/youtube-search-python/default.nix index f7298f4b8c95..6795ba581273 100644 --- a/pkgs/development/python-modules/youtube-search-python/default.nix +++ b/pkgs/development/python-modules/youtube-search-python/default.nix @@ -1,27 +1,37 @@ -{ lib, buildPythonPackage, pythonOlder, fetchPypi, httpx }: +{ lib +, buildPythonPackage +, pythonOlder +, fetchPypi +, httpx +}: buildPythonPackage rec { pname = "youtube-search-python"; - version = "1.6.2"; + version = "1.6.3"; + format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - sha256 = "sha256-PeWi1eygUSgUXZ68bUJ44IoffNDme06JNR9ns6njqMU="; + hash = "sha256-zAza1XMKLIMZFFS0v/4ATqh6j7aEB2Y+eliE/hNPORw="; }; - propagatedBuildInputs = [ httpx ]; + propagatedBuildInputs = [ + httpx + ]; - pythonImportsCheck = [ "youtubesearchpython" ]; + pythonImportsCheck = [ + "youtubesearchpython" + ]; - # project has no tests + # Project has no tests doCheck = false; meta = with lib; { - description = "Search for YouTube videos, channels & playlists & get video information using link WITHOUT YouTube Data API v3"; + description = "Search for YouTube videos, channels & playlists & get video information using link without YouTube Data API"; homepage = "https://github.com/alexmercerind/youtube-search-python"; license = licenses.mit; - maintainers = [ maintainers.marsam ]; + maintainers = with maintainers; [ marsam ]; }; } |