aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pytest-quickcheck/default.nix
blob: f3a62a79db93c97d21a79d26ef8e7449e44b2a0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi, pytest, pytest-flakes, pytestpep8, tox }:
buildPythonPackage rec {
  pname = "pytest-quickcheck";
  version = "0.8.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "2427808b54ccdec26a40cdba934a6c042fab9ebadb60d563a01f367bef87fe58";
  };

  buildInputs = [ pytest ];
  propagatedBuildInputs = [ pytest-flakes pytestpep8 tox ];

  meta = with stdenv.lib; {
    license = licenses.asl20;
    homepage = "https://pypi.python.org/pypi/pytest-quickcheck";
    description = "pytest plugin to generate random data inspired by QuickCheck";
    broken = true; # missing pytest-codestyle
  };
}