nixpkgs/pkgs/development/python-modules/pytest-quickcheck/default.nix

35 lines
672 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 ];
};
}