1{ lib
2, buildPythonPackage
3, fetchPypi
4, packaging
5, pluggy
6, py
7, six
8, virtualenv
9, setuptools-scm
10, toml
11, filelock
12}:
13
14buildPythonPackage rec {
15 pname = "tox";
16 version = "3.24.4";
17
18 buildInputs = [ setuptools-scm ];
19 propagatedBuildInputs = [ packaging pluggy py six virtualenv toml filelock ];
20
21 doCheck = false;
22
23 src = fetchPypi {
24 inherit pname version;
25 sha256 = "c30b57fa2477f1fb7c36aa1d83292d5c2336cd0018119e1b1c17340e2c2708ca";
26 };
27
28 meta = with lib; {
29 description = "Virtualenv-based automation of test activities";
30 homepage = "https://tox.readthedocs.io/";
31 license = licenses.mit;
32 };
33}