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