34 lines
626 B
Nix
34 lines
626 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, packaging
|
|
, pluggy
|
|
, py
|
|
, six
|
|
, virtualenv
|
|
, setuptools_scm
|
|
, toml
|
|
, filelock
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tox";
|
|
version = "3.7.0";
|
|
|
|
buildInputs = [ setuptools_scm ];
|
|
propagatedBuildInputs = [ packaging pluggy py six virtualenv toml filelock ];
|
|
|
|
doCheck = false;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "25ef928babe88c71e3ed3af0c464d1160b01fca2dd1870a5bb26c2dea61a17fc";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Virtualenv-based automation of test activities";
|
|
homepage = https://tox.readthedocs.io/;
|
|
license = licenses.mit;
|
|
};
|
|
}
|