My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/casttube/default.nix

23 lines
536 B

{ lib, buildPythonPackage, fetchPypi, requests }:
buildPythonPackage rec {
pname = "casttube";
version = "0.2.1";
src = fetchPypi {
inherit pname version;
sha256 = "10pw2sjy648pvp42lbbdmkkx79bqlkq1xcbzp1frraj9g66azljl";
};
propagatedBuildInputs = [ requests ];
# no tests
doCheck = false;
meta = with lib; {
description = "Interact with the Youtube Chromecast api";
homepage = "https://github.com/ur1katz/casttube";
license = licenses.mit;
maintainers = with maintainers; [ fpletz ];
};
}