nixpkgs/pkgs/development/python-modules/tox/default.nix
2020-08-16 19:31:18 +02:00

34 lines
629 B
Nix

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