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