2019-02-16 08:02:30 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, pytest, pytest-flakes, pytestpep8, tox }:
|
2017-12-20 16:30:09 +00:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-quickcheck";
|
2020-05-09 10:01:57 +00:00
|
|
|
version = "0.8.4";
|
2017-12-20 16:30:09 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-09 10:01:57 +00:00
|
|
|
sha256 = "e368390c9e3fd48eb3edec0c4eef08d7332f1143ad7b7190d32376b2fd2e62ff";
|
2017-12-20 16:30:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pytest ];
|
2019-02-16 08:02:30 +00:00
|
|
|
propagatedBuildInputs = [ pytest-flakes pytestpep8 tox ];
|
2017-12-20 16:30:09 +00:00
|
|
|
|
|
|
|
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";
|
|
|
|
};
|
|
|
|
}
|