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