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

32 lines
594 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
}:
buildPythonPackage rec {
pname = "tox";
2018-08-13 07:33:46 +00:00
version = "3.2.1";
2017-12-30 12:33:34 +00:00
buildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ packaging pluggy py six virtualenv ];
2017-12-30 12:33:34 +00:00
doCheck = false;
src = fetchPypi {
inherit pname version;
2018-08-13 07:33:46 +00:00
sha256 = "eb61aa5bcce65325538686f09848f04ef679b5cd9b83cc491272099b28739600";
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;
};
}