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