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

32 lines
594 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
2017-12-30 12:33:34 +00:00
, fetchPypi
, packaging
, pluggy
2017-12-30 12:33:34 +00:00
, py
, six
2017-12-30 12:33:34 +00:00
, virtualenv
, setuptools_scm
}:
buildPythonPackage rec {
pname = "tox";
2018-07-22 10:22:47 +00:00
version = "3.1.2";
2017-12-30 12:33:34 +00:00
buildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ packaging pluggy py six virtualenv ];
2017-12-30 12:33:34 +00:00
doCheck = false;
src = fetchPypi {
inherit pname version;
2018-07-22 10:22:47 +00:00
sha256 = "9f0cbcc36e08c2c4ae90d02d3d1f9a62231f974bcbc1df85e8045946d8261059";
2017-12-30 12:33:34 +00:00
};
meta = with lib; {
description = "Virtualenv-based automation of test activities";
homepage = https://tox.readthedocs.io/;
license = licenses.mit;
};
}