summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pytest-quickcheck/default.nix
blob: 8d42e33fd8f90b9b94a2dadbe3de23f4b7d208dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  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 = {
    license = lib.licenses.asl20;
    homepage = "https://pypi.python.org/pypi/pytest-quickcheck";
    description = "Pytest plugin to generate random data inspired by QuickCheck";
    maintainers = with lib.maintainers; [ onny ];
  };
}