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