Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytest 5, pytest-flakes 6, tox 7}: 8 9buildPythonPackage rec { 10 pname = "pytest-quickcheck"; 11 version = "0.9.0"; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-UFF8ldnaImXU6al4kGjf720mbwXE6Nut9VlvNVrMVoY="; 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}