1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-20 16:39:31 +03:00
nixpkgs/pkgs/development/python-modules/tox/default.nix

34 lines
629 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
2017-12-30 13:33:34 +01:00
, fetchPypi
, packaging
, pluggy
2017-12-30 13:33:34 +01:00
, py
, six
2017-12-30 13:33:34 +01:00
, virtualenv
, setuptools-scm
2018-11-04 11:35:19 +01:00
, toml
, filelock
2017-12-30 13:33:34 +01:00
}:
buildPythonPackage rec {
pname = "tox";
2022-01-13 16:59:04 -08:00
version = "3.24.5";
2017-12-30 13:33:34 +01:00
buildInputs = [ setuptools-scm ];
2018-11-04 11:35:19 +01:00
propagatedBuildInputs = [ packaging pluggy py six virtualenv toml filelock ];
2017-12-30 13:33:34 +01:00
doCheck = false;
src = fetchPypi {
inherit pname version;
2022-01-13 16:59:04 -08:00
sha256 = "67e0e32c90e278251fea45b696d0fef3879089ccbe979b0c556d35d5a70e2993";
2017-12-30 13:33:34 +01:00
};
meta = with lib; {
description = "Virtualenv-based automation of test activities";
homepage = "https://tox.readthedocs.io/";
license = licenses.mit;
};
}