nixpkgs/pkgs/development/python-modules/pytest-quickcheck/default.nix
Jonathan Ringer be127b0944
pythonPackages.pytestquickcheck: mark broken
```
  WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7ffff642da90>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /simple/pytest-codestyle/
  ERROR: Could not find a version that satisfies the requirement pytest-codestyle (from versions: none)
  ERROR: No matching distribution found for pytest-codestyle
```
2020-08-15 17:32:07 -07:00

21 lines
642 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, pytest, pytest-flakes, pytestpep8, tox }:
buildPythonPackage rec {
pname = "pytest-quickcheck";
version = "0.8.4";
src = fetchPypi {
inherit pname version;
sha256 = "e368390c9e3fd48eb3edec0c4eef08d7332f1143ad7b7190d32376b2fd2e62ff";
};
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
};
}