Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 33 lines 629 B view raw
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.19.0"; 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 = "17e61a93afe5c49281fb969ab71f7a3f22d7586d1c56f9a74219910f356fe7d3"; 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}