Unverified Commit 819fa6d2 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python3Packages.yeelightsunflower: init at 0.0.10 (#435796)

parents c1a807fc 1648af8a
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
}:

buildPythonPackage rec {
  pname = "yeelightsunflower";
  version = "0.0.10";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-l4Rl6WSCK68/XBwCndonNu3kePDXfSs/uIXaCkrIT7g==";
  };

  build-system = [ setuptools ];

  # Module has no tests
  doCheck = false;

  pythonImportsCheck = [ "yeelightsunflower" ];

  meta = {
    description = "Python package for interacting with Yeelight Sunflower bulbs";
    homepage = "https://github.com/lindsaymarkward/python-yeelight-sunflower";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.jamiemagee ];
  };
}
+2 −1
Original line number Diff line number Diff line
@@ -6808,7 +6808,8 @@
      ];
    "yeelightsunflower" =
      ps: with ps; [
      ]; # missing inputs: yeelightsunflower
        yeelightsunflower
      ];
    "yi" =
      ps: with ps; [
        aioftp
+2 −0
Original line number Diff line number Diff line
@@ -20218,6 +20218,8 @@ self: super: with self; {
  yeelight = callPackage ../development/python-modules/yeelight { };
  yeelightsunflower = callPackage ../development/python-modules/yeelightsunflower { };
  yfinance = callPackage ../development/python-modules/yfinance { };
  yoda = toPythonModule (pkgs.yoda.override { python3 = python; });