ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / qtpy / default.nix
blob97d2111677f33f7e0d57a05bf94fd122b7f8af72
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
6 # propagates
7 , packaging
9 # tests
10 , pyqt5
11 , pyside
12 , pytestCheckHook
15 buildPythonPackage rec {
16   pname = "QtPy";
17   version = "2.2.0";
18   format = "setuptools";
20   disabled = pythonOlder "3.6";
22   src = fetchPypi {
23     inherit pname version;
24     sha256 = "sha256-2F8bEh8kpBrSbFXERuZqvbfFKIOfjE8R8VbsRUGQORQ=";
25   };
27   propagatedBuildInputs = [
28     packaging
29   ];
31   doCheck = false; # ModuleNotFoundError: No module named 'PyQt5.QtConnectivity'
32   checkInputs = [
33     pyside
34     (pyqt5.override {
35       withConnectivity = true;
36       withMultimedia = true;
37       withWebKit = true;
38       withWebSockets = true;
39     })
40     pytestCheckHook
41   ];
43   disabledTestPaths = [
44     # Fatal error in python on x86_64
45     "qtpy/tests/test_uic.py"
46   ];
48   meta = with lib; {
49     description = "Abstraction layer for PyQt5/PyQt6/PySide2/PySide6";
50     homepage = "https://github.com/spyder-ide/qtpy";
51     license = licenses.mit;
52   };