Unverified Commit 0158c93a authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #322470 from Tochiaha/huepy

python312Packages.huepy: init at 1.2.1
parents ff389616 b3b3ed9a
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
{
  lib,
  fetchPypi,
  setuptools,
  buildPythonPackage,
}:

buildPythonPackage rec {
  pname = "huepy";
  version = "1.2.1";
  pyproject = true;

  src = fetchPypi {
    pname = "huepy";
    inherit version;
    hash = "sha256-Wym+73lzEvt2BhiLxc2Y94q49+AVdkJ6kxLxybILdZ0=";
  };

  build-system = [ setuptools ];

  pythonImportsCheck = [ "huepy" ];

  # no test
  doCheck = false;

  meta = {
    description = "Print awesomely in terminals";
    homepage = "https://pypi.org/project/huepy/";
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ tochiaha ];
    platforms = lib.platforms.all;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -5626,6 +5626,8 @@ self: super: with self; {
  huawei-lte-api = callPackage ../development/python-modules/huawei-lte-api { };
  huepy = callPackage ../development/python-modules/huepy { };
  huey = callPackage ../development/python-modules/huey { };
  hug = callPackage ../development/python-modules/hug { };