1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pytest,
6 pytestCheckHook,
7 pytest-flakes,
8}:
9
10buildPythonPackage rec {
11 pname = "pytest-quickcheck";
12 version = "0.9.0";
13 format = "setuptools";
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-UFF8ldnaImXU6al4kGjf720mbwXE6Nut9VlvNVrMVoY=";
18 };
19
20 propagatedBuildInputs = [ pytest ];
21
22 nativeCheckInputs = [
23 pytestCheckHook
24 pytest-flakes
25 ];
26
27 meta = with lib; {
28 license = licenses.asl20;
29 homepage = "https://pypi.python.org/pypi/pytest-quickcheck";
30 description = "Pytest plugin to generate random data inspired by QuickCheck";
31 maintainers = with maintainers; [ onny ];
32 };
33}