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

34 lines
629 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
2017-12-30 04:33:34 -08:00
, fetchPypi
, packaging
, pluggy
2017-12-30 04:33:34 -08:00
, py
, six
2017-12-30 04:33:34 -08:00
, virtualenv
, setuptools_scm
2018-11-04 02:35:19 -08:00
, toml
, filelock
2017-12-30 04:33:34 -08:00
}:
buildPythonPackage rec {
pname = "tox";
2020-07-31 01:56:48 -07:00
version = "3.15.2";
2017-12-30 04:33:34 -08:00
buildInputs = [ setuptools_scm ];
2018-11-04 02:35:19 -08:00
propagatedBuildInputs = [ packaging pluggy py six virtualenv toml filelock ];
2017-12-30 04:33:34 -08:00
doCheck = false;
src = fetchPypi {
inherit pname version;
2020-07-31 01:56:48 -07:00
sha256 = "c696d36cd7c6a28ada2da780400e44851b20ee19ef08cfe73344a1dcebbbe9f3";
2017-12-30 04:33:34 -08:00
};
meta = with lib; {
description = "Virtualenv-based automation of test activities";
homepage = "https://tox.readthedocs.io/";
license = licenses.mit;
};
}