nixpkgs/pkgs/development/python-modules/tox/default.nix

34 lines
629 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
2017-12-30 12:33:34 +00:00
, fetchPypi
, packaging
, pluggy
2017-12-30 12:33:34 +00:00
, py
, six
2017-12-30 12:33:34 +00:00
, virtualenv
, setuptools_scm
2018-11-04 10:35:19 +00:00
, toml
, filelock
2017-12-30 12:33:34 +00:00
}:
buildPythonPackage rec {
pname = "tox";
2020-08-16 17:31:18 +00:00
version = "3.19.0";
2017-12-30 12:33:34 +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;
2020-08-16 17:31:18 +00:00
sha256 = "17e61a93afe5c49281fb969ab71f7a3f22d7586d1c56f9a74219910f356fe7d3";
2017-12-30 12:33:34 +00:00
};
meta = with lib; {
description = "Virtualenv-based automation of test activities";
homepage = "https://tox.readthedocs.io/";
license = licenses.mit;
};
}