lol

python310Packages.pytest-quickcheck: Add upstream bug report

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