2020-04-24 23:36:52 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, pytest, pytest-flakes, pytestpep8, tox }:
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-quickcheck";
|
2020-11-19 00:13:47 +00:00
|
|
|
version = "0.8.5";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-19 00:13:47 +00:00
|
|
|
sha256 = "2427808b54ccdec26a40cdba934a6c042fab9ebadb60d563a01f367bef87fe58";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
propagatedBuildInputs = [ pytest-flakes pytestpep8 tox ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
license = licenses.asl20;
|
|
|
|
homepage = "https://pypi.python.org/pypi/pytest-quickcheck";
|
|
|
|
description = "pytest plugin to generate random data inspired by QuickCheck";
|
2020-08-20 17:08:02 +00:00
|
|
|
broken = true; # missing pytest-codestyle
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|