Merge pull request #186585 from onny/quickcheck

python310Packages.pytest-quickcheck: Add upstream bug report
This commit is contained in:
Jonas Heinrich 2022-08-16 18:25:37 +02:00 committed by GitHub
commit f6f3787c66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,11 @@
{ lib, buildPythonPackage, fetchPypi, pytest, pytest-flakes, tox }:
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pytest-flakes
, tox
}:
buildPythonPackage rec {
pname = "pytest-quickcheck";
version = "0.8.6";
@ -9,12 +16,16 @@ buildPythonPackage rec {
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ pytest-flakes tox ];
meta = with lib; {
license = licenses.asl20;
homepage = "https://pypi.python.org/pypi/pytest-quickcheck";
description = "pytest plugin to generate random data inspired by QuickCheck";
broken = true; # missing pytest-codestyle
maintainers = with maintainers; [ onny ];
# Pytest support > 6.0 missing
# https://github.com/t2y/pytest-quickcheck/issues/17
broken = true;
};
}