2018-07-23 09:54:48 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
2017-12-30 12:33:34 +00:00
|
|
|
, fetchPypi
|
2018-07-23 09:54:48 +00:00
|
|
|
, packaging
|
|
|
|
, pluggy
|
2017-12-30 12:33:34 +00:00
|
|
|
, py
|
2018-07-23 09:54:48 +00:00
|
|
|
, six
|
2017-12-30 12:33:34 +00:00
|
|
|
, virtualenv
|
2021-06-03 10:09:11 +00:00
|
|
|
, setuptools-scm
|
2018-11-04 10:35:19 +00:00
|
|
|
, toml
|
|
|
|
, filelock
|
2017-12-30 12:33:34 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "tox";
|
2022-01-14 00:59:04 +00:00
|
|
|
version = "3.24.5";
|
2017-12-30 12:33:34 +00:00
|
|
|
|
2021-06-03 10:09:11 +00:00
|
|
|
buildInputs = [ setuptools-scm ];
|
2018-11-04 10:35:19 +00:00
|
|
|
propagatedBuildInputs = [ packaging pluggy py six virtualenv toml filelock ];
|
2017-12-30 12:33:34 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-01-14 00:59:04 +00:00
|
|
|
sha256 = "67e0e32c90e278251fea45b696d0fef3879089ccbe979b0c556d35d5a70e2993";
|
2017-12-30 12:33:34 +00:00
|
|
|
};
|
2018-07-23 09:54:48 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Virtualenv-based automation of test activities";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://tox.readthedocs.io/";
|
2018-07-23 09:54:48 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|