1{ stdenv, buildPythonPackage, fetchPypi, requests }:
2
3buildPythonPackage rec {
4 pname = "casttube";
5 version = "0.2.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0g7mksfl341vfsxqvw8h15ci2qwd1rczg41n4fb2hw7y9rikqnzj";
10 };
11
12 propagatedBuildInputs = [ requests ];
13
14 # no tests
15 doCheck = false;
16
17 meta = with stdenv.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}