nixpkgs/pkgs/development/python-modules/casttube/default.nix

24 lines
536 B
Nix
Raw Normal View History

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