Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / casttube / default.nix
blob9d29a0137436737d98f9df39b7bff81f2839c2a8
1 { lib, buildPythonPackage, fetchPypi, requests }:
3 buildPythonPackage rec {
4   pname = "casttube";
5   version = "0.2.1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "10pw2sjy648pvp42lbbdmkkx79bqlkq1xcbzp1frraj9g66azljl";
10   };
12   propagatedBuildInputs = [ requests ];
14   # no tests
15   doCheck = false;
17   meta = with 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   };