1{ stdenv, buildPythonPackage, fetchPypi, pytest, pytestflakes, pytestpep8, tox }:
2buildPythonPackage rec {
3 pname = "pytest-quickcheck";
4 version = "0.8.3";
5
6 src = fetchPypi {
7 inherit pname version;
8 sha256 = "17vly6fg0s95lbg620g9dp9jjf12sj4hpbi7cg579kswabl6304g";
9 };
10
11 buildInputs = [ pytest ];
12 propagatedBuildInputs = [ pytestflakes pytestpep8 tox ];
13
14 meta = with stdenv.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 };
19}