···
2131
+
pytestcache = buildPythonPackage rec {
2132
+
name = "pytest-cache-1.0";
2133
+
src = pkgs.fetchurl {
2134
+
url = "https://pypi.python.org/packages/source/p/pytest-cache/pytest-cache-1.0.tar.gz";
2135
+
sha256 = "1a873fihw4rhshc722j4h6j7g3nj7xpgsna9hhg3zn6ksknnhx5y";
2138
+
propagatedBuildInputs = with self ; [ pytest execnet ];
2141
+
license = stdenv.lib.licenses.mit;
2142
+
website = "https://pypi.python.org/pypi/pytest-cache/";
2143
+
description = "pytest plugin with mechanisms for caching across test runs";
2147
+
pytestflakes = buildPythonPackage rec {
2148
+
name = "pytset-flakes-0.2";
2149
+
src = pkgs.fetchurl {
2150
+
url = "https://pypi.python.org/packages/source/p/pytest-flakes/pytest-flakes-0.2.zip";
2151
+
sha256 = "0n4mc2kaqasxmj8jid7jlss7nwgz4qgglcwdyrqvh08dilnp354i";
2154
+
propagatedBuildInputs = with self ; [ pytest pyflakes pytestcache ];
2157
+
license = stdenv.lib.licenses.mit;
2158
+
website = "https://pypi.python.org/pypi/pytest-flakes";
2159
+
description = "pytest plugin to check source code with pyflakes";
2163
+
pytestpep8 = buildPythonPackage rec {
2164
+
name = "pytest-pep8";
2165
+
src = pkgs.fetchurl {
2166
+
url = "http://pypi.python.org/packages/source/p/pytest-pep8/pytest-pep8-1.0.6.tar.gz";
2167
+
sha256 = "06032agzhw1i9d9qlhfblnl3dw5hcyxhagn7b120zhrszbjzfbh3";
2170
+
propagatedBuildInputs = with self ; [ pytest pytestcache pep8 ];
2173
+
license = stdenv.lib.licenses.mit;
2174
+
website = "https://pypi.python.org/pypi/pytest-pep8";
2175
+
description = "pytest plugin to check PEP8 requirements";
2179
+
pytestquickcheck = buildPythonPackage rec {
2180
+
name = "pytest-quickcheck-0.8.2";
2182
+
src = pkgs.fetchurl {
2183
+
url = "https://pypi.python.org/packages/source/p/pytest-quickcheck/pytest-quickcheck-0.8.2.tar.gz";
2184
+
sha256 = "047w4zwdsnlzmsc5f3rapzbzd2frlvz9nnp8v4b48fjmqmxassh3";
2187
+
propagatedBuildInputs = with self ; [ pytest pytestflakes pytestpep8 tox ];
2190
+
license = stdenv.lib.licenses.asl20;
2191
+
website = "https://pypi.python.org/pypi/pytest-quickcheck";
2192
+
description = "pytest plugin to generate random data inspired by QuickCheck";
pytestcov = buildPythonPackage (rec {
name = "pytest-cov-1.8.1";