lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #197763 from r-ryantm/auto-update/python310Packages.pytest-qt

python310Packages.pytest-qt: 4.1.0 -> 4.2.0

authored by

Fabian Affolter and committed by
GitHub
91e84c6c dd4897bd

+11 -3
+11 -3
pkgs/development/python-modules/pytest-qt/default.nix
··· 4 4 , setuptools-scm 5 5 , pytest 6 6 , pyqt5 7 + , pythonOlder 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "pytest-qt"; 11 - version = "4.1.0"; 12 + version = "4.2.0"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 12 16 13 17 src = fetchPypi { 14 18 inherit pname version; 15 - sha256 = "sha256-An89P13QSvBTDYRs9Q+4WPcZ9+h8LkocaGq9Tg9yFyo="; 19 + hash = "sha256-AKF7WG3VMLbXqTmZI6QEicpKmjCXGQERdfVdxrXcj0E="; 16 20 }; 17 21 18 22 nativeBuildInputs = [ ··· 27 31 pyqt5 28 32 ]; 29 33 30 - # tests require X server 34 + pythonImportsCheck = [ 35 + "pytestqt" 36 + ]; 37 + 38 + # Tests require X server 31 39 doCheck = false; 32 40 33 41 meta = with lib; {