{ lib , buildPythonPackage , isPy27 , fetchPypi , requests }: buildPythonPackage rec { pname = "ytmusicapi"; version = "0.17.1"; disabled = isPy27; src = fetchPypi { inherit pname version; sha256 = "sha256-b5+AGf9qFqQbx4Rq4RovK2NllYsB+sXVMFU4AvbDkzI="; }; 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 ]; }; }