Commit ffb1eb55 authored by emaryn's avatar emaryn
Browse files

python313Packages.pyside6-fluent-widgets: init at 1.8.1

parent 58ba1841
Loading
Loading
Loading
Loading
+42 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
  pyside6,
  pysidesix-frameless-window,
  darkdetect,
}:

buildPythonPackage rec {
  pname = "pyside6-fluent-widgets";
  version = "1.8.1";
  pyproject = true;

  src = fetchPypi {
    pname = "pyside6_fluent_widgets";
    inherit version;
    hash = "sha256-PMpbGUFN7bb9jKBF+596x4WLqoHjjNN2gX0c4G+lCHo=";
  };

  build-system = [ setuptools ];

  dependencies = [
    pyside6
    pysidesix-frameless-window
    darkdetect
  ];

  # no tests
  doCheck = false;

  pythonImportsCheck = [ "qfluentwidgets" ];

  meta = {
    description = "Fluent design widgets library based on PySide6";
    homepage = "https://github.com/zhiyiYo/PyQt-Fluent-Widgets";
    platforms = lib.platforms.linux;
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ emaryn ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -13632,6 +13632,8 @@ self: super: with self; {
    callPackage ../development/python-modules/pyside6 { inherit (pkgs) cmake ninja; }
  );
  pyside6-fluent-widgets = callPackage ../development/python-modules/pyside6-fluent-widgets { };
  pyside6-qtads = callPackage ../development/python-modules/pyside6-qtads { };
  pysidesix-frameless-window =