nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib
2, buildPythonPackage
3, fetchPypi
4, packaging
5, pluggy
6, py
7, six
8, virtualenv
9, setuptools-scm
10, toml
11, filelock
12}:
13
14buildPythonPackage rec {
15 pname = "tox";
16 version = "3.24.5";
17
18 buildInputs = [ setuptools-scm ];
19 propagatedBuildInputs = [ packaging pluggy py six virtualenv toml filelock ];
20
21 doCheck = false;
22
23 src = fetchPypi {
24 inherit pname version;
25 sha256 = "67e0e32c90e278251fea45b696d0fef3879089ccbe979b0c556d35d5a70e2993";
26 };
27
28 meta = with lib; {
29 description = "Virtualenv-based automation of test activities";
30 homepage = "https://tox.readthedocs.io/";
31 license = licenses.mit;
32 };
33}