python.pkgs.keyring: use current pytest

This commit is contained in:
Frederik Rietdijk 2018-01-20 12:53:27 +01:00
parent 3fa9702958
commit 24e2e6d67d

View file

@ -1,7 +1,7 @@
{ stdenv, buildPythonPackage, fetchPypi
, secretstorage
, fs, gdata, python_keyczar, pyasn1, pycrypto, six, setuptools_scm
, mock, pytest_28, pytestrunner }:
, mock, pytest, pytestrunner }:
buildPythonPackage rec {
name = "${pname}-${version}";
@ -17,7 +17,7 @@ buildPythonPackage rec {
fs gdata python_keyczar pyasn1 pycrypto six setuptools_scm
];
checkInputs = [ mock pytest_28 pytestrunner ];
checkInputs = [ mock pytest pytestrunner ];
propagatedBuildInputs = [ secretstorage ];