python313Packages.pysidesix-frameless-window: init at 0.7.3

This commit is contained in:
emaryn
2025-06-17 06:35:41 +08:00
parent 00d1337e29
commit 58ba184198
2 changed files with 40 additions and 0 deletions
@@ -0,0 +1,36 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pyside6,
}:
buildPythonPackage rec {
pname = "pysidesix-frameless-window";
version = "0.7.3";
pyproject = true;
src = fetchPypi {
pname = "pysidesix_frameless_window";
inherit version;
hash = "sha256-6a9xyTQOYIo0WWuLXVrOvYGAdoFXJNbR21q4FLyDKEQ=";
};
build-system = [ setuptools ];
dependencies = [ pyside6 ];
# no tests
doCheck = false;
pythonImportsCheck = [ "qframelesswindow" ];
meta = {
description = "Frameless window based on PySide6";
homepage = "https://github.com/zhiyiYo/PyQt-Frameless-Window";
platforms = lib.platforms.linux;
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ emaryn ];
};
}
+4
View File
@@ -13634,6 +13634,10 @@ self: super: with self; {
pyside6-qtads = callPackage ../development/python-modules/pyside6-qtads { };
pysidesix-frameless-window =
callPackage ../development/python-modules/pysidesix-frameless-window
{ };
pysigma = callPackage ../development/python-modules/pysigma { };
pysigma-backend-elasticsearch =