about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-quickcheck/default.nix
blob: 16f85581cabf6b35eef42f015657cdec1e2b969c (plain) (blame)
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
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pytest-flakes
, tox
}:

buildPythonPackage rec {
  pname = "pytest-quickcheck";
  version = "0.9.0";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-UFF8ldnaImXU6al4kGjf720mbwXE6Nut9VlvNVrMVoY=";
  };

  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";
    maintainers = with maintainers; [ onny ];
    # Pytest support > 6.0 missing
    # https://github.com/t2y/pytest-quickcheck/issues/17
    broken = true;
  };
}