mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
python3Packages.ytmusicapi: 0.19.3 -> 0.19.4
This commit is contained in:
parent
2de888a972
commit
5a745f5c92
1 changed files with 9 additions and 6 deletions
|
@ -1,19 +1,20 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, isPy27
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ytmusicapi";
|
||||
version = "0.19.3";
|
||||
version = "0.19.4";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = isPy27;
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "dfd0271f7177173cea9c255730151a10a2fe4a32f9accd2fe31e7645936c90c5";
|
||||
sha256 = "sha256-AAGUfa91f9aquPLQZs9kQDbZXrBrxjSBFdWIrxB5D/I=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -22,10 +23,12 @@ buildPythonPackage rec {
|
|||
|
||||
doCheck = false; # requires network access
|
||||
|
||||
pythonImportsCheck = [ "ytmusicapi" ];
|
||||
pythonImportsCheck = [
|
||||
"ytmusicapi"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Unofficial API for YouTube Music";
|
||||
description = "Python API for YouTube Music";
|
||||
homepage = "https://github.com/sigma67/ytmusicapi";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
|
|
Loading…
Reference in a new issue