mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
34 lines
629 B
Nix
34 lines
629 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, packaging
|
|
, pluggy
|
|
, py
|
|
, six
|
|
, virtualenv
|
|
, setuptools_scm
|
|
, toml
|
|
, filelock
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tox";
|
|
version = "3.14.3";
|
|
|
|
buildInputs = [ setuptools_scm ];
|
|
propagatedBuildInputs = [ packaging pluggy py six virtualenv toml filelock ];
|
|
|
|
doCheck = false;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "06ba73b149bf838d5cd25dc30c2dd2671ae5b2757cf98e5c41a35fe449f131b3";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Virtualenv-based automation of test activities";
|
|
homepage = "https://tox.readthedocs.io/";
|
|
license = licenses.mit;
|
|
};
|
|
}
|