python: pytest: 3.4.2 -> 3.5.0

This commit is contained in:
Frederik Rietdijk 2018-04-04 20:15:54 +02:00
parent 55670818b0
commit 2744b4ff28
2 changed files with 7 additions and 7 deletions

View File

@ -1,8 +1,8 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy26, argparse, attrs, hypothesis, py { stdenv, buildPythonPackage, fetchPypi, isPy26, argparse, attrs, hypothesis, py
, setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k , setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k, more-itertools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "3.4.2"; version = "3.5.0";
pname = "pytest"; pname = "pytest";
preCheck = '' preCheck = ''
@ -12,12 +12,12 @@ buildPythonPackage rec {
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1idq7s8da2p82ynf9fcg77rzj1dsagg3bpsrlslf31x7q4vasyqi"; sha256 = "fae491d1874f199537fd5872b5e1f0e74a009b979df9d53d1553fd03da1703e1";
}; };
checkInputs = [ hypothesis ]; checkInputs = [ hypothesis ];
buildInputs = [ setuptools_scm ]; buildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ attrs py setuptools six pluggy ] propagatedBuildInputs = [ attrs py setuptools six pluggy more-itertools ]
++ (stdenv.lib.optional (!isPy3k) funcsigs) ++ (stdenv.lib.optional (!isPy3k) funcsigs)
++ (stdenv.lib.optional isPy26 argparse); ++ (stdenv.lib.optional isPy26 argparse);

View File

@ -1893,9 +1893,9 @@ in {
}; };
}; };
pytest = self.pytest_34; pytest = self.pytest_35;
pytest_34 = callPackage ../development/python-modules/pytest { pytest_35 = callPackage ../development/python-modules/pytest {
hypothesis = self.hypothesis.override { hypothesis = self.hypothesis.override {
# hypothesis requires pytest that causes dependency cycle # hypothesis requires pytest that causes dependency cycle
doCheck = false; doCheck = false;
@ -1904,7 +1904,7 @@ in {
}; };
# Needed for celery # Needed for celery
pytest_32 = self.pytest_34.overrideAttrs( oldAttrs: rec { pytest_32 = self.pytest_35.overrideAttrs( oldAttrs: rec {
version = "3.2.5"; version = "3.2.5";
src = oldAttrs.src.override { src = oldAttrs.src.override {
inherit version; inherit version;