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