fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
33 lines
674 B
Nix
33 lines
674 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pytest,
|
|
pytestCheckHook,
|
|
pytest-flakes,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-quickcheck";
|
|
version = "0.9.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-UFF8ldnaImXU6al4kGjf720mbwXE6Nut9VlvNVrMVoY=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pytest ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-flakes
|
|
];
|
|
|
|
meta = with lib; {
|
|
license = licenses.asl20;
|
|
homepage = "https://pypi.python.org/pypi/pytest-quickcheck";
|
|
description = "pytest plugin to generate random data inspired by QuickCheck";
|
|
maintainers = with maintainers; [ onny ];
|
|
};
|
|
}
|