mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
37 lines
700 B
Nix
37 lines
700 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, packaging
|
|
, pluggy
|
|
, py
|
|
, six
|
|
, virtualenv
|
|
, setuptools-scm
|
|
, toml
|
|
, tomli
|
|
, filelock
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tox";
|
|
version = "3.27.1";
|
|
|
|
buildInputs = [ setuptools-scm ];
|
|
propagatedBuildInputs = [ packaging pluggy py six virtualenv filelock ]
|
|
++ lib.optional (pythonOlder "3.11") tomli;
|
|
|
|
doCheck = false;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-sqkg41pmjMBpQv/RzzpPsiGk2QnKchkftthLCxinvgQ=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Virtualenv-based automation of test activities";
|
|
homepage = "https://tox.readthedocs.io/";
|
|
license = licenses.mit;
|
|
};
|
|
}
|