python: tox: 3.2.1 -> 3.5.3

This commit is contained in:
Frederik Rietdijk 2018-11-04 11:35:19 +01:00
parent bb38682fe5
commit abcac8ab0c
1 changed files with 5 additions and 3 deletions

View File

@ -7,20 +7,22 @@
, six , six
, virtualenv , virtualenv
, setuptools_scm , setuptools_scm
, toml
, filelock
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "tox"; pname = "tox";
version = "3.2.1"; version = "3.5.3";
buildInputs = [ setuptools_scm ]; buildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ packaging pluggy py six virtualenv ]; propagatedBuildInputs = [ packaging pluggy py six virtualenv toml filelock ];
doCheck = false; doCheck = false;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "eb61aa5bcce65325538686f09848f04ef679b5cd9b83cc491272099b28739600"; sha256 = "513e32fdf2f9e2d583c2f248f47ba9886428c949f068ac54a0469cac55df5862";
}; };
meta = with lib; { meta = with lib; {