1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytest
5, pytest-flakes
6, tox
7}:
8
9buildPythonPackage rec {
10 pname = "pytest-quickcheck";
11 version = "0.8.6";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "3ef9bde7ba1fe6470c5b61631440186d1254e276c67a527242d91451ab7994e5";
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}