lol

python310Packages.pytest-quickcheck: unbreak and enable tests

+9 -6
+9 -6
pkgs/development/python-modules/pytest-quickcheck/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytest 5 + , pytestCheckHook 5 6 , pytest-flakes 6 - , tox 7 7 }: 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pytest-quickcheck"; 11 11 version = "0.9.0"; 12 + format = "setuptools"; 12 13 13 14 src = fetchPypi { 14 15 inherit pname version; 15 16 hash = "sha256-UFF8ldnaImXU6al4kGjf720mbwXE6Nut9VlvNVrMVoY="; 16 17 }; 17 18 18 - buildInputs = [ pytest ]; 19 + propagatedBuildInputs = [ 20 + pytest 21 + ]; 19 22 20 - propagatedBuildInputs = [ pytest-flakes tox ]; 23 + nativeCheckInputs = [ 24 + pytestCheckHook 25 + pytest-flakes 26 + ]; 21 27 22 28 meta = with lib; { 23 29 license = licenses.asl20; 24 30 homepage = "https://pypi.python.org/pypi/pytest-quickcheck"; 25 31 description = "pytest plugin to generate random data inspired by QuickCheck"; 26 32 maintainers = with maintainers; [ onny ]; 27 - # Pytest support > 6.0 missing 28 - # https://github.com/t2y/pytest-quickcheck/issues/17 29 - broken = true; 30 33 }; 31 34 }