Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 626 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.7.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 = "25ef928babe88c71e3ed3af0c464d1160b01fca2dd1870a5bb26c2dea61a17fc"; 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}