1{ stdenv, buildPythonPackage, fetchPypi, pytest, pytestflakes, pytestpep8, tox }:
2buildPythonPackage rec {
3 pname = "pytest-quickcheck";
4 version = "0.8.3";
5 name = "${pname}-${version}";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "17vly6fg0s95lbg620g9dp9jjf12sj4hpbi7cg579kswabl6304g";
10 };
11
12 buildInputs = [ pytest ];
13 propagatedBuildInputs = [ pytestflakes pytestpep8 tox ];
14
15 meta = with stdenv.lib; {
16 license = licenses.asl20;
17 homepage = "https://pypi.python.org/pypi/pytest-quickcheck";
18 description = "pytest plugin to generate random data inspired by QuickCheck";
19 };
20}