nixpkgs/pkgs/development/python-modules/qtpy/default.nix
2024-03-29 10:32:43 +00:00

56 lines
1021 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
# propagates
, packaging
# tests
, pyqt5
, pyside2
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "qtpy";
version = "2.4.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "QtPy";
inherit version;
hash = "sha256-paFf/VGVUKE2G9xW/8B/2lamr3KS8Xx7OV1Ag69jKYc=";
};
propagatedBuildInputs = [
packaging
];
doCheck = false; # ModuleNotFoundError: No module named 'PyQt5.QtConnectivity'
nativeCheckInputs = [
pyside2
(pyqt5.override {
withConnectivity = true;
withMultimedia = true;
withWebKit = true;
withWebSockets = true;
})
pytestCheckHook
];
disabledTestPaths = [
# Fatal error in python on x86_64
"qtpy/tests/test_uic.py"
];
meta = with lib; {
description = "Abstraction layer for PyQt5/PyQt6/PySide2/PySide6";
mainProgram = "qtpy";
homepage = "https://github.com/spyder-ide/qtpy";
license = licenses.mit;
};
}