mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 01:16:57 +01:00
Merge pull request #186585 from onny/quickcheck
python310Packages.pytest-quickcheck: Add upstream bug report
This commit is contained in:
commit
f6f3787c66
1 changed files with 13 additions and 2 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue