From ff34d4573edf770ca1db54c4f187541d37f03cb4 Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Sun, 14 Aug 2022 09:27:48 +0200 Subject: [PATCH] python310Packages.pytest-quickcheck: Add upstream bug report --- .../python-modules/pytest-quickcheck/default.nix | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pytest-quickcheck/default.nix b/pkgs/development/python-modules/pytest-quickcheck/default.nix index 4e08a8fabba0..99d65ec28669 100644 --- a/pkgs/development/python-modules/pytest-quickcheck/default.nix +++ b/pkgs/development/python-modules/pytest-quickcheck/default.nix @@ -1,4 +1,11 @@ -{ lib, buildPythonPackage, fetchPypi, pytest, pytest-flakes, tox }: +{ lib +, buildPythonPackage +, fetchPypi +, pytest +, pytest-flakes +, tox +}: + buildPythonPackage rec { pname = "pytest-quickcheck"; version = "0.8.6"; @@ -9,12 +16,16 @@ buildPythonPackage rec { }; buildInputs = [ pytest ]; + propagatedBuildInputs = [ pytest-flakes tox ]; meta = with lib; { license = licenses.asl20; homepage = "https://pypi.python.org/pypi/pytest-quickcheck"; description = "pytest plugin to generate random data inspired by QuickCheck"; - broken = true; # missing pytest-codestyle + maintainers = with maintainers; [ onny ]; + # Pytest support > 6.0 missing + # https://github.com/t2y/pytest-quickcheck/issues/17 + broken = true; }; }