depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-quickcheck/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

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 ];
};
}