Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, buildPythonPackage, fetchPypi, pytest, pytest-flakes, pytestpep8, tox }: 2buildPythonPackage rec { 3 pname = "pytest-quickcheck"; 4 version = "0.8.4"; 5 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "e368390c9e3fd48eb3edec0c4eef08d7332f1143ad7b7190d32376b2fd2e62ff"; 9 }; 10 11 buildInputs = [ pytest ]; 12 propagatedBuildInputs = [ pytest-flakes pytestpep8 tox ]; 13 14 meta = with stdenv.lib; { 15 license = licenses.asl20; 16 homepage = "https://pypi.python.org/pypi/pytest-quickcheck"; 17 description = "pytest plugin to generate random data inspired by QuickCheck"; 18 broken = true; # missing pytest-codestyle 19 }; 20}