1{ lib, buildPythonPackage, fetchPypi, requests }: 2 3buildPythonPackage rec { 4 pname = "casttube"; 5 version = "0.2.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "10pw2sjy648pvp42lbbdmkkx79bqlkq1xcbzp1frraj9g66azljl"; 10 }; 11 12 propagatedBuildInputs = [ requests ]; 13 14 # no tests 15 doCheck = false; 16 17 meta = with lib; { 18 description = "Interact with the Youtube Chromecast api"; 19 homepage = "https://github.com/ur1katz/casttube"; 20 license = licenses.mit; 21 maintainers = with maintainers; [ fpletz ]; 22 }; 23}