34 lines
643 B
Nix
34 lines
643 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, isPy27
|
||
|
, fetchPypi
|
||
|
, requests
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "ytmusicapi";
|
||
|
version = "0.14.3";
|
||
|
|
||
|
disabled = isPy27;
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "83251a95d5bd74116353d29dfda2d0c5055b88276a0876a313a66f8b9c691344";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
requests
|
||
|
];
|
||
|
|
||
|
doCheck = false; # requires network access
|
||
|
|
||
|
pythonImportsCheck = [ "ytmusicapi" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Unofficial API for YouTube Music";
|
||
|
homepage = "https://github.com/sigma67/ytmusicapi";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ dotlambda ];
|
||
|
};
|
||
|
}
|